diff -r 1c1cd66ffcdc -r 7b61834edcf6 QTfrontend/hwform.h --- a/QTfrontend/hwform.h Tue Dec 19 17:20:14 2006 +0000 +++ b/QTfrontend/hwform.h Thu Jan 04 16:27:45 2007 +0000 @@ -24,6 +24,7 @@ #include #include +#include "game.h" #include "ui_hwform.h" class HWGame; @@ -66,6 +67,8 @@ void NetStartGame(); void ChangeInNetTeams(const QStringList & teams); void StartMPGame(); + void GameStateChanged(GameState gameState); + void GameStats(char type, const QString & info); private: void UpdateTeamsLists(); @@ -79,13 +82,16 @@ ID_PAGE_NETCHAT = 6, ID_PAGE_NETCFG = 7, ID_PAGE_INFO = 8, - ID_PAGE_MAIN = 9 + ID_PAGE_MAIN = 9, + ID_PAGE_GAMESTATS = 10 }; HWGame * game; HWTeam * editedTeam; HWNet * hwnet; GameUIConfig * config; QStack PagesStack; + + void CreateGame(GameCFGWidget * gamecfg); }; #endif