Added FLOP action

This commit is contained in:
2021-07-28 09:52:29 -07:00
parent 9b4589dfe8
commit e7a7fd9545
8 changed files with 140 additions and 10 deletions

View File

@ -25,6 +25,9 @@ bool pokerGameInit(game_t *game) {
pokerActionRoundAdd(&pokerGame->scene.conversation.actionQueue, &pokerGame->poker);
vnConversationTalk(&pokerGame->scene.conversation, "Betting Round", NULL);
vnConversationTalk(&pokerGame->scene.conversation, "Flop Round", NULL);
pokerActionFlopAdd(&pokerGame->scene.conversation.actionQueue, &pokerGame->poker);
// Begin the VN conversation queue.
queueNext(&pokerGame->scene.conversation.actionQueue);

View File

@ -14,6 +14,7 @@
#include "../../poker/actions/match.h"
#include "../../poker/actions/round.h"
#include "../../poker/actions/flop.h"
/**
* Initializes the game state for the poker game.