Guest User

Untitled

a guest
Jun 21st, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. typedef struct {
  2. TCOD_keycode_t vk; /* key code */
  3. char c; /* character if vk == TCODK_CHAR else 0 */
  4. bool pressed ; /* does this correspond to a key press or key release event ? */
  5. bool lalt ;
  6. bool lctrl ;
  7. bool ralt ;
  8. bool rctrl ;
  9. bool shift ;
  10. } TCOD_key_t;
Add Comment
Please, Sign In to add comment