PuzzleSolver/Source/main.cpp
2017-11-18 08:22:35 +01:00

16 lines
324 B
C++

#include "header.h"
int main()
{
vector<Part> myFirstPuzzle;
Part myFirstPart;
myFirstPart.setConnections(0b00101000);
myFirstPuzzle.push_back(myFirstPart);
cout << "Hello World" << endl;
randomBox myFirstBox(2,3);
myFirstBox.createRandomPuzzle();
myFirstBox.shuffle();
myFirstBox.printPuzzle();
}