summaryrefslogtreecommitdiff
path: root/src/holder.h
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2023-10-12 15:27:26 -0400
committerLouie S <louie@example.com>2023-10-12 15:27:43 -0400
commit91da624fe1665f3ddb3216ebb8a56a982074228d (patch)
treef64f629d2f4c33b7f64681fd9e285620f139e1ed /src/holder.h
First commit
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