summaryrefslogtreecommitdiff
path: root/src/ring.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ring.h')
-rw-r--r--src/ring.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/ring.h b/src/ring.h
index 0836421..0b23bf1 100644
--- a/src/ring.h
+++ b/src/ring.h
@@ -1,10 +1,18 @@
#ifndef RING_H
#define RING_H
+#include <stdbool.h>
+
typedef struct ring {
int size;
int location;
- char ascii[9];
+ char ascii[10];
+ bool held;
} Ring;
+extern Ring rings[3];
+extern Ring *held;
+
+void pickup_ring();
+
#endif