Render chips

This commit is contained in:
2021-05-20 08:34:15 -07:00
parent 3a867f9ad6
commit 760348d2e1
9 changed files with 60 additions and 20 deletions

View File

@ -34,6 +34,7 @@
// Poker Game Logic
#include "poker/action.h"
#include "poker/card.h"
#include "poker/chip.h"
#include "poker/player.h"
#include "poker/render.h"

View File

@ -0,0 +1,8 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#pragma once

View File

@ -32,6 +32,11 @@
#define HOLDEM_GAME_CARD_SLOT_FLOP3 0x05
#define HOLDEM_GAME_CARD_SLOT_FLOP4 0x06
#define HOLDEM_GAME_CHIP_STACK0 0x00
#define HOLDEM_GAME_CHIP_STACK1 0x01
#define HOLDEM_GAME_CHIP_STACK2 0x03
#define HOLDEM_GAME_CHIP_STACK3 0x04
typedef struct {
float x, z;
float yaw;