diff options
Diffstat (limited to 'level.h')
-rw-r--r-- | level.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,9 +2,10 @@ #define LEVEL_H_ #include "geometry.h" +#include "Polygon.h" typedef struct _ROOM { - POLYGON polygon; + Polygon polygon; char *name; } ROOM; |