aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;