X-Git-Url: https://plomlompom.com/repos/test.html?a=blobdiff_plain;f=src%2Fkeybindings.h;h=85c33c781bf38581a627a66e1eb42ca002f64ec1;hb=f222ace2f2441b21a3c29741483d8018294820a4;hp=b0ff912944040920edfe6ee022c27d51c4e99f43;hpb=64e1bc2a874308530b7b45c33ed5d37f34f5f8be;p=plomrogue diff --git a/src/keybindings.h b/src/keybindings.h index b0ff912..85c33c7 100644 --- a/src/keybindings.h +++ b/src/keybindings.h @@ -1,3 +1,5 @@ +#ifndef KEYBINDINGS_H + struct KeyBinding { char * name; uint16_t key; }; @@ -13,3 +15,5 @@ uint16_t get_action_key (struct KeyBinding *, char *); char * get_keyname(uint16_t); void keyswin_mod_key (struct World *, struct WinMeta *); void keyswin_move_selection (struct World *, char); + +#endif