diff options
| author | totycro <totycro@unknown-horizons.org> | 2011-04-04 20:35:49 +0200 |
|---|---|---|
| committer | totycro <totycro@unknown-horizons.org> | 2011-04-04 20:35:49 +0200 |
| commit | a5ea024b0119a4b0fea858ae9115d744a786d3af (patch) | |
| tree | 99408cf77bad1596c9e2fcdf035a2294eff64cdd /pacman-c++/mainwidget.h | |
| parent | 0693d00da48d795c7ccb658e8b69fe17f4427337 (diff) | |
| download | foop-a5ea024b0119a4b0fea858ae9115d744a786d3af.tar.gz foop-a5ea024b0119a4b0fea858ae9115d744a786d3af.tar.bz2 foop-a5ea024b0119a4b0fea858ae9115d744a786d3af.zip | |
change project file:
use:
qmake -config client
or
qmake -config main
Added basic client gui infrastructure
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 | ||
