Playing around with talking and input

This commit is contained in:
2021-05-26 08:10:37 -07:00
parent bc512ab29e
commit 68e6abe0de
9 changed files with 61 additions and 23 deletions

View File

@@ -24,16 +24,16 @@
/**
* Initializes the poker context for the first time.
* @param poker Poker context to initialize.
* @param render Rendering context.
* @param engine Rendering context.
*/
void pokerInit(poker_t *poker, render_t *render);
void pokerInit(poker_t *poker, engine_t *engine);
/**
* Updates the poker context.
* @param poker Poker game to update.
* @param render Render manager to use.
* @param poker Poker game context.
* @param engine Engine that is running the game.
*/
void pokerUpdate(poker_t *poker, render_t *render);
void pokerUpdate(poker_t *poker, engine_t *engine);
/**
* Cleans an existing poker game instance.