Refactor almost finished.

This commit is contained in:
2021-09-19 22:49:52 -07:00
parent a2c269ab33
commit b3e06a3837
25 changed files with 56 additions and 31 deletions

View File

@ -15,6 +15,7 @@ void _pokerActionRoundOnStart(queue_t *queue, queueaction_t *action ,uint8_t i){
poker = (poker_t *)action->data;
// Update game state.
poker->state = POKER_STATE_STARTING_ROUND;
// Prepare the initial game state

View File

@ -11,6 +11,7 @@
#include "../dealer.h"
#include "../bet.h"
#include "../player.h"
#include "../poker.h"
/** Callback for when the poker round start aciton begins. */
void _pokerActionRoundOnStart(queue_t *queue, queueaction_t *action, uint8_t i);