summaryrefslogtreecommitdiff
path: root/frontend/src/shortcuts/keymap.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/shortcuts/keymap.js')
-rw-r--r--frontend/src/shortcuts/keymap.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/frontend/src/shortcuts/keymap.js b/frontend/src/shortcuts/keymap.js
new file mode 100644
index 00000000..7bc24e83
--- /dev/null
+++ b/frontend/src/shortcuts/keymap.js
@@ -0,0 +1,10 @@
+const KeymapConfiguration = {
+ MAP: {
+ MOVE_LEFT: ["a", "left"],
+ MOVE_RIGHT: ["d", "right"],
+ MOVE_UP: ["w", "up"],
+ MOVE_DOWN: ["s", "down"]
+ }
+};
+
+export default KeymapConfiguration;