blob: 230e69f28baf5cf15687884eba8193f7b590543a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#ifndef _MAIN_WIN_H
#define _MAIN_WIN_H
#include <kmainwindow.h>
#include "gameboard.h"
class ConquestMap;
class PlanetStatusTable;
class MainWindow : public KMainWindow
{
Q_OBJECT
public:
MainWindow();
~MainWindow();
protected:
void setupKAction();
void setupGameBoard();
private:
GameBoard *gameBoard;
KAction *endAction, *measureAction, *standingAction, *fleetAction;
private slots:
void gameStateChange( GameState );
};
#endif
|