More refactoring.
This commit is contained in:
@ -4,7 +4,7 @@
|
|||||||
// https://opensource.org/licenses/MIT
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <dawn/dawn.h>
|
#include "../libs.h"
|
||||||
|
|
||||||
/** How many chips each player has by defautl */
|
/** How many chips each player has by defautl */
|
||||||
#define POKER_BET_PLAYER_CHIPS_DEFAULT 10000
|
#define POKER_BET_PLAYER_CHIPS_DEFAULT 10000
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include "../libs.h"
|
#include "../libs.h"
|
||||||
#include "card.h"
|
#include "card.h"
|
||||||
|
#include "poker.h"
|
||||||
|
|
||||||
/** How many cards a player can hold in their hand */
|
/** How many cards a player can hold in their hand */
|
||||||
#define POKER_PLAYER_HAND 2
|
#define POKER_PLAYER_HAND 2
|
||||||
|
@ -7,6 +7,9 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "../libs.h"
|
#include "../libs.h"
|
||||||
|
#include "bet.h"
|
||||||
|
#include "dealer.h"
|
||||||
|
#include "winner.h"
|
||||||
|
|
||||||
/** How many cards to deal each player during the deal round */
|
/** How many cards to deal each player during the deal round */
|
||||||
#define POKER_DEAL_CARD_EACH 2
|
#define POKER_DEAL_CARD_EACH 2
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "../libs.h"
|
#include "../libs.h"
|
||||||
|
#include "poker.h"
|
||||||
|
|
||||||
#define POKER_TURN_TYPE_OUT 0x00
|
#define POKER_TURN_TYPE_OUT 0x00
|
||||||
#define POKER_TURN_TYPE_FOLD 0x01
|
#define POKER_TURN_TYPE_FOLD 0x01
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
#include "card.h"
|
#include "card.h"
|
||||||
#include "player.h"
|
#include "player.h"
|
||||||
#include "winner.h"
|
#include "winner.h"
|
||||||
|
#include "poker.h"
|
||||||
|
|
||||||
/** Size of the FULL hand used to calculate a winning. */
|
/** Size of the FULL hand used to calculate a winning. */
|
||||||
#define POKER_WINNING_FULL_SIZE POKER_PLAYER_HAND+POKER_DEALER_HAND_SIZE
|
#define POKER_WINNING_FULL_SIZE POKER_PLAYER_HAND+POKER_DEALER_HAND_SIZE
|
||||||
|
Reference in New Issue
Block a user