X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;ds=sidebyside;f=src%2Fkeybindings.h;h=85c33c781bf38581a627a66e1eb42ca002f64ec1;hb=015ca9d3e02bfe4f8a18cdec43817e2521015c00;hp=b0ff912944040920edfe6ee022c27d51c4e99f43;hpb=e9d8b1aca776341c9cdaa2ea6406336661d82a76;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