Changed the map creation to create each pixmap just once per round
[ghostsoverboard] / mainwindow.h
1 #ifndef MAINWINDOW_H
2 #define MAINWINDOW_H
3
4 #include <QtGui/QMainWindow>
5 #include <QGraphicsView>
6 #include "orientationcontrolledgraphicspixmapobject.h"
7 #include "seascene.h"
8
9 class MainWindow : public QMainWindow
10 {
11     Q_OBJECT
12
13 public:
14     MainWindow(QWidget *parent = 0);
15     ~MainWindow();
16
17 public slots:
18     void initializeBoundaries();
19     void pause(bool paused);
20
21 private:
22
23 SeaScene * pScene_;
24 QGraphicsView * pView_;
25 OrientationControlledGraphicsPixmapObject * pTursas_;
26 bool paused_;
27
28
29
30
31 };
32
33 #endif // MAINWINDOW_H