More include fixes

This commit is contained in:
2021-10-15 09:41:58 -07:00
parent ac4542472b
commit 54d45441c3
5 changed files with 13 additions and 5 deletions

View File

@ -7,8 +7,10 @@
#pragma once #pragma once
#include "../libs.h" #include "../libs.h"
#include "../util/math.h"
#include "fuck.h" #include "fuck.h"
#include "poker.h" #include "player.h"
#include "pot.h"
/** /**
* Returns the index of the first player that remains to bet for the current * Returns the index of the first player that remains to bet for the current

View File

@ -6,8 +6,8 @@
*/ */
#pragma once #pragma once
#include "../libs.h"
#include "fuck.h" #include "fuck.h"
#include "poker.h"
#include "card.h" #include "card.h"
/** /**

View File

@ -6,8 +6,10 @@
*/ */
#pragma once #pragma once
#include "../libs.h"
#include "../util/flags.h"
#include "fuck.h" #include "fuck.h"
#include "poker.h" #include "bet.h"
/** /**
* Add a player to the game. The player starts in an out state (with no chips). * Add a player to the game. The player starts in an out state (with no chips).

View File

@ -8,7 +8,7 @@
#pragma once #pragma once
#include "../libs.h" #include "../libs.h"
#include "../util/array.h" #include "../util/array.h"
#include "poker.h" #include "fuck.h"
/** /**
* Adds a new pot to the poker game instance. * Adds a new pot to the poker game instance.

View File

@ -7,9 +7,13 @@
#pragma once #pragma once
#include "../libs.h" #include "../libs.h"
#include "../util/math.h"
#include "fuck.h" #include "fuck.h"
#include "poker.h" #include "bet.h"
#include "card.h"
#include "winner.h"
#include "pot.h" #include "pot.h"
#include "poker.h"//get callbet
/** /**
* Return a turn action for the given player to fold. * Return a turn action for the given player to fold.