PuzzleSolver/Source/main.cpp

16 lines
324 B
C++
Raw Normal View History

#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;
randomBox myFirstBox(2,3);
myFirstBox.createRandomPuzzle();
myFirstBox.shuffle();
myFirstBox.printPuzzle();
2017-11-17 22:10:36 +01:00
}