QTfrontend/game.h
changeset 533 eebb7684ac22
parent 486 7ea71cd3acd5
child 587 74db4115064a
--- a/QTfrontend/game.h	Wed May 30 19:29:27 2007 +0000
+++ b/QTfrontend/game.h	Wed May 30 20:48:57 2007 +0000
@@ -19,13 +19,9 @@
 #ifndef GAME_H
 #define GAME_H
 
-#include <QObject>
-#include <QByteArray>
 #include <QString>
 #include "team.h"
 
-#include <map>
-
 #include "tcpBase.h"
 
 class GameUIConfig;
@@ -62,6 +58,7 @@
 	void SendNet(const QByteArray & msg);
 	void GameStateChanged(GameState gameState);
 	void GameStats(char type, const QString & info);
+	void HaveRecord(bool isDemo, const QByteArray & record);
 	void ErrorMessage(const QString &);
 
 public slots:
@@ -82,13 +79,14 @@
 	GameCFGWidget * gamecfg;
 	TeamSelWidget* m_pTeamSelWidget;
 	GameType gameType;
+	GameState gameState;
 
 	void commonConfig();
 	void SendConfig();
 	void SendQuickConfig();
 	void SendNetConfig();
 	void ParseMessage(const QByteArray & msg);
-	void SaveDemo(const QString & filename);
+	void SetGameState(GameState state);
 };
 
 #endif