edited file structure, added git instructions
This commit is contained in:
16
Source/header/input.h
Normal file
16
Source/header/input.h
Normal 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
0
Source/header/output.h
Normal file
0
Source/header/solve.h
Normal file
0
Source/header/solve.h
Normal file
Reference in New Issue
Block a user