aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/floor.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sludge/floor.h')
-rw-r--r--engines/sludge/floor.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/engines/sludge/floor.h b/engines/sludge/floor.h
index 1b212fa73b..b1de826f9d 100644
--- a/engines/sludge/floor.h
+++ b/engines/sludge/floor.h
@@ -22,6 +22,8 @@
#ifndef SLUDGE_FLOOR_H
#define SLUDGE_FLOOR_H
+#include "common/rect.h"
+
namespace Sludge {
struct floorPolygon {
@@ -29,14 +31,9 @@ struct floorPolygon {
int *vertexID;
};
-struct POINT {
- int x;
- int y;
-};
-
struct flor {
int originalNum;
- POINT *vertex;
+ Common::Point *vertex;
int numPolygons;
floorPolygon *polygon;
int * *matrix;