Working on poker logic

This commit is contained in:
2021-06-05 10:03:04 -07:00
parent 28e5e86540
commit ce96052385
12 changed files with 60 additions and 10 deletions

View File

@ -24,6 +24,9 @@
/** State for whether or not the player is out */
#define POKER_PLAYER_STATE_OUT 0x04
/** The index that the player who is the human... is */
#define POKER_PLAYER_HUMAN_INDEX 0x02
/** Poker Player State */
typedef struct {
/** Cards in the players' hand */

View File

@ -137,5 +137,4 @@ typedef struct {
texture_t cardTexture;
tileset_t cardTileset;
primitive_t cardPrimitive;
} poker_t;