Added basic player movement.

This commit is contained in:
2021-04-23 08:17:42 +10:00
parent f7c1380f06
commit e323cf2721
23 changed files with 428 additions and 14 deletions

View File

@ -9,10 +9,10 @@
/** Inputs */
#define GAME_INPUT_UP (inputbind_t)0x01
#define GAME_INPUT_DOWN (inputbind_t)0x02
#define GAME_INPUT_LEFT (inputbind_t)0x03
#define GAME_INPUT_RIGHT (inputbind_t)0x04
#define INPUT_UP (inputbind_t)0x01
#define INPUT_DOWN (inputbind_t)0x02
#define INPUT_LEFT (inputbind_t)0x03
#define INPUT_RIGHT (inputbind_t)0x04
#define INPUT_NULL (inputbind_t)0x00
#define INPUT_BIND_COUNT 128