now this work stable

global restruct fuinish part 1 of 3
This commit is contained in:
2010-02-07 16:18:29 +03:00
parent 6a11d7fbcd
commit 3f8971b113
16 changed files with 157 additions and 110 deletions

19
games.h Normal file
View File

@@ -0,0 +1,19 @@
#ifndef GAMES_H
#define GAMES_H
#include "basestruct.h"
class games
{
public:
games(QSize formsize, QPoint startpnt, QPoint finishpnt, int sizeofcell = 16);
QSize size;
QPoint start;
QPoint finish;
QPixmap * buff;
QPixmap * background;
int cellsize;
int ** Cells;
};
#endif // GAMES_H