aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb
diff options
context:
space:
mode:
authorNipun Garg2019-06-25 09:20:39 +0530
committerEugene Sandulenko2019-09-03 17:17:00 +0200
commit43e738ec1798b1f7a3ded8feb6b9108f636e1c1d (patch)
treed568a6ccdd9099fe5149ca2afae6aee5e3996220 /engines/hdb
parent9be8ac9d35f1b54cb573b9cfda3ad74bc802e689 (diff)
downloadscummvm-rg350-43e738ec1798b1f7a3ded8feb6b9108f636e1c1d.tar.gz
scummvm-rg350-43e738ec1798b1f7a3ded8feb6b9108f636e1c1d.tar.bz2
scummvm-rg350-43e738ec1798b1f7a3ded8feb6b9108f636e1c1d.zip
HDB: Add _hereList data
Diffstat (limited to 'engines/hdb')
-rw-r--r--engines/hdb/ai.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/hdb/ai.h b/engines/hdb/ai.h
index bd25f555fa..4c59ac69a6 100644
--- a/engines/hdb/ai.h
+++ b/engines/hdb/ai.h
@@ -591,6 +591,11 @@ struct ArrowPath {
ArrowPath() : type(0), dir(DIR_NONE), tileX(0), tileY(0) {}
};
+struct HereT {
+ uint16 x, y;
+ char entName[32];
+};
+
struct CineCommand {
CineType cmdType;
double x, y;
@@ -949,6 +954,7 @@ public:
AutoAction _autoActions[kMaxAutoActions];
Common::Array<ArrowPath *> *_arrowPaths;
+ Common::Array<HereT *> *_hereList;
// Virtual Player
AIEntity _dummyPlayer;