Added basic betting, turns, and added queue restacking

This commit is contained in:
2021-08-13 09:32:15 -07:00
parent 82fe9a7e3c
commit eddc5bfafd
14 changed files with 217 additions and 8 deletions

View File

@ -48,8 +48,8 @@ typedef struct {
uint8_t state;
/** Chips in players' posession */
uint32_t chips;
int32_t chips;
/** Current bet in current round player has placed */
uint32_t currentBet;
int32_t currentBet;
} pokerplayer_t;