From 8543d93c72ab0b8ddbd2c71839c8718c3af6f6fe Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Sat, 18 Sep 2021 23:21:18 -0700 Subject: [PATCH] More refactoring. --- src/poker/bet.h | 2 +- src/poker/player.h | 1 + src/poker/poker.h | 3 +++ src/poker/turn.h | 1 + src/poker/winner.h | 1 + 5 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/poker/bet.h b/src/poker/bet.h index 196b0522..c21537e6 100644 --- a/src/poker/bet.h +++ b/src/poker/bet.h @@ -4,7 +4,7 @@ // https://opensource.org/licenses/MIT #pragma once -#include +#include "../libs.h" /** How many chips each player has by defautl */ #define POKER_BET_PLAYER_CHIPS_DEFAULT 10000 diff --git a/src/poker/player.h b/src/poker/player.h index 0efdbfb1..8eb5a21f 100644 --- a/src/poker/player.h +++ b/src/poker/player.h @@ -8,6 +8,7 @@ #pragma once #include "../libs.h" #include "card.h" +#include "poker.h" /** How many cards a player can hold in their hand */ #define POKER_PLAYER_HAND 2 diff --git a/src/poker/poker.h b/src/poker/poker.h index b00f08b4..76513bdc 100644 --- a/src/poker/poker.h +++ b/src/poker/poker.h @@ -7,6 +7,9 @@ #pragma once #include "../libs.h" +#include "bet.h" +#include "dealer.h" +#include "winner.h" /** How many cards to deal each player during the deal round */ #define POKER_DEAL_CARD_EACH 2 diff --git a/src/poker/turn.h b/src/poker/turn.h index 23402557..1051e98c 100644 --- a/src/poker/turn.h +++ b/src/poker/turn.h @@ -7,6 +7,7 @@ #pragma once #include "../libs.h" +#include "poker.h" #define POKER_TURN_TYPE_OUT 0x00 #define POKER_TURN_TYPE_FOLD 0x01 diff --git a/src/poker/winner.h b/src/poker/winner.h index 48c7959b..eacc636b 100644 --- a/src/poker/winner.h +++ b/src/poker/winner.h @@ -10,6 +10,7 @@ #include "card.h" #include "player.h" #include "winner.h" +#include "poker.h" /** Size of the FULL hand used to calculate a winning. */ #define POKER_WINNING_FULL_SIZE POKER_PLAYER_HAND+POKER_DEALER_HAND_SIZE