Fixed GUI refresh. Added calls to setHighestSet.

This commit is contained in:
lotodore
2007-05-24 23:38:40 +00:00
parent c37cafbf70
commit e8d7009106
5 changed files with 182 additions and 26 deletions
+5 -2
View File
@@ -135,8 +135,8 @@ protected:
// Protected constructor - this is a singleton.
ServerRecvStateStartRound();
void GameRun(Game &curGame, int state);
PlayerInterface *GetCurrentPlayer(Game &curGame);
static void GameRun(Game &curGame, int state);
static PlayerInterface *GetCurrentPlayer(Game &curGame);
};
// State: Wait for a player action.
@@ -155,6 +155,9 @@ protected:
// Protected constructor - this is a singleton.
ServerRecvStateWaitPlayerAction();
static int GetHighestSet(Game &curGame);
static void SetHighestSet(Game &curGame, int highestSet);
};