#ifndef INCLUDE_KEYBINDINGS #define INCLUDE_KEYBINDINGS #include typedef struct t_keybinding { int key; char* text; } keybinding; keybinding keybind_wall_purchase = {KEY_F, "F"}; #endif