Moved code from card to poker
This commit is contained in:
@ -32,8 +32,8 @@
|
|||||||
#include "input/input.h"
|
#include "input/input.h"
|
||||||
|
|
||||||
// Poker Game Logic
|
// Poker Game Logic
|
||||||
#include "cards/card.h"
|
#include "poker/card.h"
|
||||||
#include "cards/poker/holdem.h"
|
#include "poker/holdem.h"
|
||||||
|
|
||||||
// Utility Objects
|
// Utility Objects
|
||||||
#include "util/list.h"
|
#include "util/list.h"
|
||||||
|
@ -6,12 +6,12 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "../card.h"
|
#include "card.h"
|
||||||
#include "../../display/render.h"
|
#include "../display/render.h"
|
||||||
#include "../../display/spritebatch.h"
|
#include "../display/spritebatch.h"
|
||||||
#include "../../display/texture.h"
|
#include "../display/texture.h"
|
||||||
#include "../../display/tileset.h"
|
#include "../display/tileset.h"
|
||||||
#include "../../display/framebuffer.h"
|
#include "../display/framebuffer.h"
|
||||||
|
|
||||||
/** How many cards a player can hold in their hand */
|
/** How many cards a player can hold in their hand */
|
||||||
#define HOLDEM_PLAYER_HAND 2
|
#define HOLDEM_PLAYER_HAND 2
|
@ -11,7 +11,7 @@
|
|||||||
#include "../display/shader.h"
|
#include "../display/shader.h"
|
||||||
#include "../file/asset.h"
|
#include "../file/asset.h"
|
||||||
#include "../input/input.h"
|
#include "../input/input.h"
|
||||||
#include "../card/holdemgame.h"
|
#include "../poker/holdemgame.h"
|
||||||
#include "../debug/log.h"
|
#include "../debug/log.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user