summaryrefslogtreecommitdiffstats
path: root/level.h
diff options
context:
space:
mode:
Diffstat (limited to 'level.h')
-rw-r--r--level.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/level.h b/level.h
index 8b098d8..0475a90 100644
--- a/level.h
+++ b/level.h
@@ -2,9 +2,10 @@
#define LEVEL_H_
#include "geometry.h"
+#include "Polygon.h"
typedef struct _ROOM {
- POLYGON polygon;
+ Polygon polygon;
char *name;
} ROOM;