edited file structure, added git instructions

This commit is contained in:
g-spacewhale
2017-11-17 21:31:45 +01:00
parent a1dea01195
commit 0c8ecb456a
7 changed files with 8 additions and 2 deletions

16
Source/header/input.h Normal file
View File

@ -0,0 +1,16 @@
#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;
};

0
Source/header/output.h Normal file
View File

0
Source/header/solve.h Normal file
View File