Working on the poker game stuff.
This commit is contained in:
@@ -9,10 +9,19 @@
|
||||
#include "../libs.h"
|
||||
#include "STRINGS.h"
|
||||
|
||||
typedef void queuecallback_t();
|
||||
|
||||
extern uint16_t QUEUE_ITEM;
|
||||
extern queuecallback_t *QUEUE_CALLBACKS[];
|
||||
|
||||
#define QUEUE_BEGIN 10
|
||||
#define QUEUE_TAKE_BLINDS 20
|
||||
#define QUEUE_DEBUG 1
|
||||
#define QUEUE_BEGIN 5
|
||||
#define QUEUE_TAKE_BLINDS 10
|
||||
#define QUEUE_DEAL_CARDS 15
|
||||
#define QUEUE_BEGIN_BETTING 20
|
||||
#define QUEUE_FLOP 25
|
||||
#define QUEUE_WINNER_DECIDE 40
|
||||
|
||||
void conversationQueueInit();
|
||||
void conversationQueueNext();
|
||||
#define conversationQueueNext() QUEUE_CALLBACKS[QUEUE_ITEM]()
|
||||
|
||||
void conversationQueueInit();
|
Reference in New Issue
Block a user