Adding more TS

This commit is contained in:
2021-09-25 11:29:23 -07:00
parent 914741c175
commit c3fed0257a
13 changed files with 136 additions and 13 deletions

View File

@@ -24,16 +24,16 @@
* @param game Game to initialize.
* @returns True if successful, otherwise false.
*/
bool gameInstanceInit(pokergame_t *game);
bool pokerGameInit(pokergame_t *game);
/**
* Updates the poker game instance.
* @param game Poker game to update for.
*/
void gameInstanceUpdate(pokergame_t *game);
void pokerGameUpdate(pokergame_t *game);
/**
* Disposes a previously initialized poker game instance.
* @param game Game to dispose.
*/
void gameInstanceDispose(pokergame_t *game);
void pokerGameDispose(pokergame_t *game);