Removed lots of slack, edited map functions into dispatcher, puzzleMat missing
Removed overconstructed logic, changed vector to map. PuzzleMat object not defined yet, for implementation, make the functions that have already been called through it.
This commit is contained in:
@ -10,11 +10,11 @@ int main()
|
||||
unsigned int cols=5, rows=6;
|
||||
|
||||
//some basic random puzzle stuff
|
||||
vector<PuzzlePiece> myFirstBox = createBox(coor(cols,rows));
|
||||
vector<Part> myFirstBox = createBox(coor(cols,rows));
|
||||
|
||||
//some advanced solver stuff
|
||||
vector<LogEntry> log;
|
||||
vector<PuzzlePiece*> p_myFirstBox;
|
||||
vector<Part*> p_myFirstBox;
|
||||
|
||||
//BoxClassify myFirstBox();
|
||||
cout << endl;
|
||||
|
Reference in New Issue
Block a user