Cleaning more.

This commit is contained in:
2021-10-14 22:02:50 -07:00
parent bc3c07d36f
commit 4d43f837cf
11 changed files with 84 additions and 94 deletions

View File

@ -68,3 +68,11 @@ void pokerBet(
* @param chips The amount of chips the player is betting.
*/
void pokerBetForPlayer(poker_t *poker, uint8_t playerIndex, int32_t chips);
/**
* Gets the amount of chips necessary to call the current bet.
*
* @param poker Poker game instance.
* @return Chips necessary to call the current bet.
*/
int32_t pokerBetGetCurrentCallValue(poker_t *poker);