summaryrefslogtreecommitdiff
path: root/commands.h
diff options
context:
space:
mode:
Diffstat (limited to 'commands.h')
-rw-r--r--commands.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/commands.h b/commands.h
new file mode 100644
index 0000000..39badc5
--- /dev/null
+++ b/commands.h
@@ -0,0 +1,15 @@
+#pragma once
+
+enum {
+ COM_LEFT,
+ COM_RIGHT,
+ COM_UP,
+ COM_DOWN,
+ _COM_COUNT
+};
+
+enum {
+ COM_LEN = 8
+};
+
+void commands_draw(void);