diff options
Diffstat (limited to 'pacman-c++/mainwidget.h')
| -rw-r--r-- | pacman-c++/mainwidget.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pacman-c++/mainwidget.h b/pacman-c++/mainwidget.h new file mode 100644 index 0000000..d1ec761 --- /dev/null +++ b/pacman-c++/mainwidget.h | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | #ifndef MAINWIDGET_H | ||
| 2 | #define MAINWIDGET_H | ||
| 3 | |||
| 4 | #include <QtGui> | ||
| 5 | |||
| 6 | class MainWidget | ||
| 7 | : public QWidget | ||
| 8 | { | ||
| 9 | Q_OBJECT | ||
| 10 | |||
| 11 | public: | ||
| 12 | MainWidget(); | ||
| 13 | |||
| 14 | private: | ||
| 15 | void loadDummyMap(); | ||
| 16 | |||
| 17 | QGraphicsScene *scene; | ||
| 18 | }; | ||
| 19 | |||
| 20 | #endif // MAINWIDGET_H \ No newline at end of file | ||
