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.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/sludge/floor.h b/engines/sludge/floor.h
index 5c0d050b0c..193b6d19bf 100644
--- a/engines/sludge/floor.h
+++ b/engines/sludge/floor.h
@@ -26,6 +26,8 @@
#include "windef.h"
#endif
+namespace Sludge {
+
struct floorPolygon {
int numVertices;
int *vertexID;
@@ -54,4 +56,6 @@ int inFloor(int x, int y);
bool getMatchingCorners(floorPolygon &, floorPolygon &, int &, int &);
bool closestPointOnLine(int &closestX, int &closestY, int x1, int y1, int x2, int y2, int xP, int yP);
+} // End of namespace Sludge
+
#endif