aboutsummaryrefslogtreecommitdiff
path: root/scumm/boxes.h
diff options
context:
space:
mode:
authorMax Horn2003-05-15 21:57:38 +0000
committerMax Horn2003-05-15 21:57:38 +0000
commit8b419944eee013fe45909b15e0375531383dd25b (patch)
tree6114d61501ad0fcb38d801be0205c1f334f610f3 /scumm/boxes.h
parent73e086fe625663a04f1b34c372ec93de440231d1 (diff)
downloadscummvm-rg350-8b419944eee013fe45909b15e0375531383dd25b.tar.gz
scummvm-rg350-8b419944eee013fe45909b15e0375531383dd25b.tar.bz2
scummvm-rg350-8b419944eee013fe45909b15e0375531383dd25b.zip
ScummPoint -> ScummVM::Point
svn-id: r7543
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;