Added basic betting, turns, and added queue restacking
This commit is contained in:
@ -19,11 +19,14 @@
|
||||
|
||||
typedef struct {
|
||||
/** Blinds */
|
||||
uint32_t blindSmall, blindBig;
|
||||
int32_t blindSmall, blindBig;
|
||||
|
||||
/** How big the current bet is for the round. */
|
||||
int32_t currentBet;
|
||||
|
||||
/** For Betting round, which player is currently betting */
|
||||
uint8_t better;
|
||||
|
||||
/** Current pot of chips */
|
||||
uint32_t pot;
|
||||
int32_t pot;
|
||||
} pokerbet_t;
|
Reference in New Issue
Block a user