Fixed errors due to no pictures in pieces folder

This commit is contained in:
TabDragon
2017-12-29 14:33:22 +01:00
parent 4c59e04fa7
commit cba4d204c8
7 changed files with 50 additions and 16 deletions

View File

@ -40,9 +40,11 @@ class Puzzle
{
public:
Puzzle(unsigned int newcols,unsigned int newrows):rows(newrows),cols(newcols)
Puzzle(unsigned int newcols,unsigned int newrows):rows(newrows),cols(newcols) {}
bool PreProcessing()
{
a1.PreProcessing({rows,cols}, nullptr);
return a1.PreProcessing({rows,cols}, nullptr);
}
coor getSizeAsCoor()