PuzzleSolver/Source/header/input.h
c-weidinger 17c3841650 Clion Project created
Included Raphaels code in CLion Project
2017-12-02 14:39:19 +01:00

16 lines
284 B
C++
Executable File

#include <stdint.h>
class Part
{
public:
Part(): connections(0){}
~Part() {}
uint8_t getConnections() const
{return connections;}
void setConnections(uint8_t newconnections)
{connections = newconnections;}
private:
uint8_t connections;
};