Just writing code nothing special.

This commit is contained in:
2021-08-02 22:58:02 -07:00
parent 289e6fccfc
commit c451538def
19 changed files with 254 additions and 30 deletions

View File

@ -9,6 +9,8 @@
#if SETTING_GAME == SETTING_GAME_POKER
#include "poker/pokergame.h"
#elif SETTING_GAME == SETTING_GAME_DAWN
#include "dawn/dawngame.h"
#endif
/** Describes the current game */
@ -20,5 +22,7 @@ typedef struct {
#if SETTING_GAME == SETTING_GAME_POKER
pokergame_t pokerGame;
#elif SETTING_GAME == SETTING_GAME_DAWN
dawngame_t dawnGame;
#endif
} game_t;