Poker winning moment.

This commit is contained in:
2022-11-27 07:55:57 -08:00
parent c1d6885970
commit b8272f800c
19 changed files with 572 additions and 54 deletions

View File

@ -12,6 +12,7 @@
#include "visualnovel/events/VisualNovelTextboxEvent.hpp"
#include "poker/PokerGame.hpp"
#include "visualnovel/events/PokerBetLoopEvent.hpp"
#include "visualnovel/events/PokerInitialEvent.hpp"
#include "visualnovel/events/SimpleLoopEvent.hpp"
namespace Dawn {
@ -47,13 +48,7 @@ namespace Dawn {
->setEvent(new VisualNovelTextboxEvent(vnManager, "Starting Game"))
->then(new PokerNewGameEvent(vnManager))
->then(new VisualNovelTextboxEvent(vnManager, "Game Started"))
->then(new PokerNewRoundEvent(vnManager))
->then(new VisualNovelTextboxEvent(vnManager, "Round Started"))
->then(new PokerTakeBlindsEvent(vnManager))
->then(new VisualNovelTextboxEvent(vnManager, "Blinds Taken"))
->then(new PokerDealEvent(vnManager))
->then(new VisualNovelTextboxEvent(vnManager, "Cards Dealt"))
->then(new PokerBetLoopEvent(vnManager))
->then(new PokerInitialEvent(vnManager))
;
return scene;