aboutsummaryrefslogtreecommitdiff
path: root/src/MainWindow.h
blob: d6246f882decf7d7082a6ffd4054cb852aae4196 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef MainWindow_h
#define MainWindow_h

#include <QMainWindow>

class GameView;

class MainWindow : public QMainWindow
{
    Q_OBJECT
public:
    explicit MainWindow(QWidget *parent = 0);
    virtual ~MainWindow();

signals:

public slots:

private:
    GameView* m_gameView;
};

#endif // MainWindow_h