From 3c6cf0ed9980990ca07f6d76817814979691d65e Mon Sep 17 00:00:00 2001 From: Louie S Date: Thu, 12 Oct 2023 16:07:05 -0400 Subject: Pickup displaying --- src/ring.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/ring.h') 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 + 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 -- cgit