diff options
Diffstat (limited to 'src/game/game_variables.h')
| -rw-r--r-- | src/game/game_variables.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/game/game_variables.h b/src/game/game_variables.h new file mode 100644 index 00000000..0b1fed7e --- /dev/null +++ b/src/game/game_variables.h @@ -0,0 +1,8 @@ +MACRO_CONFIG_INT(screen_width, 800, 0, 0) +MACRO_CONFIG_INT(screen_height, 600, 0, 0) +MACRO_CONFIG_STR(player_name, 32, "nameless tee") +MACRO_CONFIG_INT(key_move_left, 65, 32, 127) +MACRO_CONFIG_INT(key_move_right, 68, 32, 127) +MACRO_CONFIG_INT(key_jump, 32, 32, 127) +MACRO_CONFIG_INT(key_fire, 33, 32, 127) +MACRO_CONFIG_INT(key_hook, 34, 32, 127) |