New packet types.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user