Split out player tests.

This commit is contained in:
2021-10-14 23:27:50 -07:00
parent d62a18b66f
commit 422e017f2d
6 changed files with 255 additions and 223 deletions

View File

@ -15,8 +15,8 @@ uint8_t pokerPlayerAdd(poker_t *poker) {
player->cardCount = 0;
player->chips = 0;
player->currentBet = 0;
player->state = POKER_PLAYER_STATE_OUT;
player->timesRaised = 0;
player->state = POKER_PLAYER_STATE_OUT;
return i;
}