diff -r 8136a5363586 -r eebb7684ac22 QTfrontend/game.h --- 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 -#include #include #include "team.h" -#include - #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