20 lines
296 B
C++
20 lines
296 B
C++
#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
|