aboutsummaryrefslogtreecommitdiff
path: root/scumm/boxes.h
diff options
context:
space:
mode:
authorMax Horn2003-07-02 13:47:03 +0000
committerMax Horn2003-07-02 13:47:03 +0000
commit92fd56f9f07a5cefc10f99cdec1e7f490ec2a7d6 (patch)
treeb8b6739e2639e16fa39d6b0e0f32d76f16e92877 /scumm/boxes.h
parent4a3da1a2b74bf9b421ab78005887b33b6191d6ba (diff)
downloadscummvm-rg350-92fd56f9f07a5cefc10f99cdec1e7f490ec2a7d6.tar.gz
scummvm-rg350-92fd56f9f07a5cefc10f99cdec1e7f490ec2a7d6.tar.bz2
scummvm-rg350-92fd56f9f07a5cefc10f99cdec1e7f490ec2a7d6.zip
removed #include "boxes.h" from scumm.h; cleaned up AdjustBoxResult definition & usage; properly deal with larger box distances, thus partially fixing Zak on the airport (but original seems to have used a very different algorithm, so this really is only a partial fix)
svn-id: r8710
Diffstat (limited to 'scumm/boxes.h')
-rw-r--r--scumm/boxes.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/scumm/boxes.h b/scumm/boxes.h
index 1fffd7f285..583c3cc889 100644
--- a/scumm/boxes.h
+++ b/scumm/boxes.h
@@ -38,11 +38,6 @@ typedef enum {
kBoxInvisible = 0x80
} BoxFlags;
-struct AdjustBoxResult { /* Result type of AdjustBox functions */
- int16 x, y;
- uint16 dist;
-};
-
struct BoxCoords { /* Box coordinates */
ScummVM::Point ul;
ScummVM::Point ur;
@@ -50,8 +45,4 @@ struct BoxCoords { /* Box coordinates */
ScummVM::Point lr;
};
-struct Box;
-struct PathNode;
-struct PathVertex;
-
#endif