Nuked Poker State

This commit is contained in:
2021-05-17 06:43:48 -07:00
parent c854ebbb5d
commit a97933d366
17 changed files with 185 additions and 174 deletions

View File

@ -15,10 +15,10 @@
#define POKER_PLAYER_COUNT 5
/** State for whether or not a player has folded */
#define POKER_STATE_FOLDED 0x01
#define GAME_STATE_FOLDED 0x01
/** State for whether or not a player is showing their hand */
#define POKER_STATE_SHOWING 0x02
#define GAME_STATE_SHOWING 0x02
/** Poker Player State */
typedef struct {