Nuked PokerGame file

This commit is contained in:
2021-05-17 06:32:10 -07:00
parent d956305af7
commit 0b4d0dd4cf
18 changed files with 82 additions and 163 deletions

View File

@ -11,7 +11,7 @@
/**
* Initializes the action manager.
*/
void holdemActionInit();
void pokerActionInit();
/**
* Adds an action to the action queue.
@ -19,22 +19,22 @@ void holdemActionInit();
* @param action Action to add to the queue.
* @returns The index of the action within the queue, or -1 if failure occured.
*/
int32_t holdemActionAdd(pokeraction_t action);
int32_t pokerActionAdd(pokeraction_t action);
/**
* Removes an action from the action queue.
*
* @param index Action to remove (by index in the queue).
*/
void holdemActionRemove(int32_t index);
void pokerActionRemove(int32_t index);
/**
* Updates the action manager, which (in turn) updates all actions that are
* currently running.
*/
void holdemActionUpdate();
void pokerActionUpdate();
/**
* Cleans up the action manager and all actions.
*/
void holdemActionDispose();
void pokerActionDispose();