This commit is contained in:
2021-05-20 07:47:03 -07:00
parent e2274ea8bf
commit 3a867f9ad6
12 changed files with 434 additions and 4 deletions

View File

@ -40,6 +40,7 @@ bool gameInit() {
holdemRenderWorldInit();
holdemRenderPlayerInit();
holdemRenderCardInit();
holdemRenderChipInit();
// Prepare the action manager
pokerActionInit();

View File

@ -17,6 +17,7 @@
#include "../poker/action/start.h"
#include "../poker/render/player.h"
#include "../poker/render/card.h"
#include "../poker/render/chip.h"
#include "../poker/render/frame.h"
#include "../poker/render/look.h"
#include "../poker/render/world.h"