summaryrefslogtreecommitdiff
path: root/src/misc/keycode.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/misc/keycode.ts')
-rw-r--r--src/misc/keycode.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/misc/keycode.ts b/src/misc/keycode.ts
new file mode 100644
index 0000000..d1dd935
--- /dev/null
+++ b/src/misc/keycode.ts
@@ -0,0 +1,6 @@
+export const keyCodes = {
+ Right: 39,
+ Left: 37,
+ Enter: 13,
+ Space: 32,
+};