summaryrefslogtreecommitdiffstats
path: root/level.h
diff options
context:
space:
mode:
Diffstat (limited to 'level.h')
-rw-r--r--level.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/level.h b/level.h
index 735076a..aa51ea1 100644
--- a/level.h
+++ b/level.h
@@ -3,7 +3,10 @@
#include "geometry.h"
-typedef POLYGON ROOM;
+typedef struct _ROOM {
+ POLYGON polygon;
+ unsigned char *name;
+} ROOM;
typedef struct _LEVEL {
unsigned int nRooms;