Working on model loading and added poker table

This commit is contained in:
2021-05-09 14:38:08 -07:00
parent f3ffc93927
commit d6e3b4aad1
21 changed files with 1297 additions and 38 deletions

View File

@ -8,14 +8,26 @@
#include "../util/list.h"
/** Inputs */
#define INPUT_UP (inputbind_t)0x01
#define INPUT_DOWN (inputbind_t)0x02
#define INPUT_LEFT (inputbind_t)0x03
#define INPUT_RIGHT (inputbind_t)0x04
/** Debug Inputs */
#define INPUT_NULL (inputbind_t)0x00
#define INPUT_DEBUG_UP (inputbind_t)0x01
#define INPUT_DEBUG_DOWN (inputbind_t)0x02
#define INPUT_DEBUG_LEFT (inputbind_t)0x03
#define INPUT_DEBUG_RIGHT (inputbind_t)0x04
#define INPUT_DEBUG_RAISE (inputbind_t)0x05
#define INPUT_DEBUG_LOWER (inputbind_t)0x06
#define INPUT_DEBUG_FINE (inputbind_t)0x07
#define INPUT_DEBUG_PLUS (inputbind_t)0x08
#define INPUT_DEBUG_MINUS (inputbind_t)0x09
#define INPUT_NULL (inputbind_t)0x00
#define INPUT_BIND_COUNT 128
/** Real Inputs (Starts at 128/0x80) */
#define INPUT_UP (inputbind_t)0x80
#define INPUT_DOWN (inputbind_t)0x81
#define INPUT_LEFT (inputbind_t)0x82
#define INPUT_RIGHT (inputbind_t)0x83
#define INPUT_BIND_COUNT 0xFF
#define INPUT_SOURCE_COUNT 4096
/**