aboutsummaryrefslogtreecommitdiff
path: root/scumm/boxes.h
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/boxes.h')
-rw-r--r--scumm/boxes.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/scumm/boxes.h b/scumm/boxes.h
index 98c7751ebc..1fffd7f285 100644
--- a/scumm/boxes.h
+++ b/scumm/boxes.h
@@ -23,6 +23,8 @@
#ifndef BOXES_H
#define BOXES_H
+#include "common/rect.h"
+
#define SIZEOF_BOX_V2 8
#define SIZEOF_BOX_V3 18
#define SIZEOF_BOX 20
@@ -42,10 +44,10 @@ struct AdjustBoxResult { /* Result type of AdjustBox functions */
};
struct BoxCoords { /* Box coordinates */
- ScummPoint ul;
- ScummPoint ur;
- ScummPoint ll;
- ScummPoint lr;
+ ScummVM::Point ul;
+ ScummVM::Point ur;
+ ScummVM::Point ll;
+ ScummVM::Point lr;
};
struct Box;