diff options
Diffstat (limited to 'KeyboardCode.h')
-rw-r--r-- | KeyboardCode.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/KeyboardCode.h b/KeyboardCode.h new file mode 100644 index 0000000..a7232ba --- /dev/null +++ b/KeyboardCode.h @@ -0,0 +1,11 @@ +#pragma once + +typedef enum { + KEY_SPACE = 44, + KEY_ENTER = 40, + KEY_O = 18, + KEY_A = 4, + KEY_LEFT = 80, + KEY_RIGHT = 79, +} KeyboardCode; + |