summaryrefslogtreecommitdiff
path: root/commands.h
diff options
context:
space:
mode:
authorkdx <kdx@42l.fr>2023-02-18 01:18:42 +0100
committerkdx <kdx@42l.fr>2023-02-18 01:18:42 +0100
commit72a6892b5b18e450d82468e7bb830687a0215eb4 (patch)
treec8126b0557161a671df47c9fed2c7f915a53298e /commands.h
parent80635fd59c54d8ba4591029114bea3755cccb816 (diff)
downloadbozojam-72a6892b5b18e450d82468e7bb830687a0215eb4.tar.gz
art
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);