summaryrefslogtreecommitdiff
path: root/src/tower.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tower.h')
-rw-r--r--src/tower.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/tower.h b/src/tower.h
new file mode 100644
index 0000000..6fed8cd
--- /dev/null
+++ b/src/tower.h
@@ -0,0 +1,16 @@
+#ifndef TOWER_H
+#define TOWER_H
+
+#include <stdbool.h>
+
+typedef struct tower {
+ bool rings[3];
+} Tower;
+
+extern Tower towers[3];
+extern int hover;
+
+void hover_move_right();
+void hover_move_left();
+
+#endif