this version without bugs

This commit is contained in:
2010-02-09 10:14:09 +03:00
parent 105c340243
commit 52a5384e6f
16 changed files with 420 additions and 1117 deletions

View File

@@ -13,4 +13,7 @@ games::games(QSize formsize, QPoint startpnt, QPoint finishpnt, int sizeofcell)
Cells[i] = new int[size.height()];
for (int j = 0; j < size.height(); j++) Cells[i][j] = 0;
}
Cells[start.x()][start.y()] = 10;
Cells[finish.x()][finish.y()] = 10;
qDebug() << start << finish;
}