Added basic betting, turns, and added queue restacking

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

View File

@ -29,6 +29,14 @@ void pokerBetReset(pokerbet_t *bet);
*/
void pokerBetPlayer(poker_t *poker, pokerplayer_t *player, int32_t chips);
/**
* Reset the current better back to the round/turns default. The better will
* always be the player to the right of the small blind player.
*
* @param poker Poker game to update for.
*/
void pokerBetResetBetter(poker_t *poker);
/**
* Takes the current blinds from the correct players.
*