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