From ace7d2754616ce0df48bd1314095d0e8907d729a Mon Sep 17 00:00:00 2001 From: Nipun Garg Date: Tue, 25 Jun 2019 00:33:19 +0530 Subject: HDB: Add _arrowPaths data --- engines/hdb/ai.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'engines/hdb/ai.h') diff --git a/engines/hdb/ai.h b/engines/hdb/ai.h index 9c49e3e14d..fec57834a6 100644 --- a/engines/hdb/ai.h +++ b/engines/hdb/ai.h @@ -583,6 +583,14 @@ struct AutoAction { AutoAction() : x(0), y(0), activated(false), luaFuncInit(""), luaFuncUse(""), entityName("") {} }; +struct ArrowPath { + uint16 type; + AIDir dir; + uint16 tileX, tileY; + + ArrowPath() : type(0), dir(DIR_NONE), tileX(0), tileY(0) {} +}; + struct CineCommand { CineType cmdType; double x, y; @@ -937,6 +945,8 @@ public: AutoAction _autoActions[kMaxAutoActions]; + Common::Array *_arrowPaths; + // Virtual Player AIEntity _dummyPlayer; -- cgit v1.2.3