New packet types.

This commit is contained in:
lotodore
2007-05-08 22:08:00 +00:00
parent a6f6c99c92
commit 16c0d52689
4 changed files with 490 additions and 107 deletions
+15
View File
@@ -22,4 +22,19 @@
#define MAX_NUMBER_OF_PLAYERS 7
enum GameState {
GAME_STATE_PREFLOP = 0,
GAME_STATE_FLOP,
GAME_STATE_TURN,
GAME_STATE_RIVER };
enum PlayerAction {
PLAYER_ACTION_NONE = 0,
PLAYER_ACTION_FOLD,
PLAYER_ACTION_CHECK,
PLAYER_ACTION_CALL,
PLAYER_ACTION_BET,
PLAYER_ACTION_RAISE,
PLAYER_ACTION_ALLIN };
#endif