diff options
Diffstat (limited to 'include/keybindings.h')
| -rw-r--r-- | include/keybindings.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/keybindings.h b/include/keybindings.h new file mode 100644 index 0000000..fcdfda1 --- /dev/null +++ b/include/keybindings.h @@ -0,0 +1,13 @@ +#ifndef INCLUDE_KEYBINDINGS +#define INCLUDE_KEYBINDINGS + +#include <projectbase/project_base.h> + +typedef struct t_keybinding { + int key; + char* text; +} keybinding; + +keybinding keybind_wall_purchase = {KEY_F, "F"}; + +#endif
\ No newline at end of file |
