Image Update

This commit is contained in:
2021-06-12 07:54:22 -07:00
parent f6fdec2db2
commit 928c3c838e
10 changed files with 106 additions and 14 deletions

View File

@ -80,10 +80,27 @@
////////////////////////////////////////////////////////////////////////////////
// Suits
////////////////////////////////////////////////////////////////////////////////
#define CARD_SUIT_CLUBS 0x01
#define CARD_SUIT_DIAMONDS 0x02
#define CARD_SUIT_HEARTS 0x03
#define CARD_SUIT_SPADES 0x04
#define CARD_SUIT_CLUBS 0x0D
#define CARD_SUIT_DIAMONDS 0x1A
#define CARD_SUIT_HEARTS 0x27
#define CARD_SUIT_SPADES 0x34
////////////////////////////////////////////////////////////////////////////////
// Card numbers
////////////////////////////////////////////////////////////////////////////////
#define CARD_ACE 0x00
#define CARD_TWO 0x01
#define CARD_THREE 0x02
#define CARD_FOUR 0x03
#define CARD_FIVE 0x04
#define CARD_SIX 0x05
#define CARD_SEVEN 0x06
#define CARD_EIGHT 0x07
#define CARD_NINE 0x08
#define CARD_TEN 0x09
#define CARD_JACK 0x0A
#define CARD_QUEEN 0x0B
#define CARD_KING 0x0C
/** Count of cards in each suit */
#define CARD_COUNT_PER_SUIT 13

View File

@ -110,7 +110,7 @@ typedef struct {
/** Game's Shader */
shader_t shader;
/** Camera for the world and the GUI */
camera_t cameraWorld, cameraGui;
camera_t cameraWorld, cameraGui, cameraTest;
/** Refer to POKER_GUI_HEIGHT */
float guiWidth;