2017-11-18 08:22:35 +01:00
|
|
|
#include "header.h"
|
2017-11-17 22:10:36 +01:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
vector<Part> myFirstPuzzle;
|
|
|
|
Part myFirstPart;
|
|
|
|
myFirstPart.setConnections(0b00101000);
|
|
|
|
myFirstPuzzle.push_back(myFirstPart);
|
|
|
|
cout << "Hello World" << endl;
|
2017-11-18 08:22:35 +01:00
|
|
|
randomBox myFirstBox(2,3);
|
|
|
|
myFirstBox.createRandomPuzzle();
|
|
|
|
myFirstBox.shuffle();
|
|
|
|
myFirstBox.printPuzzle();
|
|
|
|
|
2017-11-17 22:10:36 +01:00
|
|
|
}
|