A bit more code cleaning.

This commit is contained in:
2021-07-13 08:59:04 -07:00
parent 5d9c1d6de5
commit d1cbb622f6
11 changed files with 64 additions and 29 deletions

View File

@ -6,6 +6,20 @@
#pragma once
#include <dawn/dawn.h>
/**
* Initializes/resets the poker bet context.
*
* @param bet Poker bet instance.
*/
void pokerBetInit(pokerbet_t *bet);
/**
* Resets the bet state (for a new round).
*
* @param bet
*/
void pokerBetReset(pokerbet_t *bet);
/**
* Let a player bet chips into the pot.
*