aboutsummaryrefslogtreecommitdiff
path: root/engines/illusions/pathfinder.h
diff options
context:
space:
mode:
authorEric Fry2018-05-25 21:51:21 +1000
committerEugene Sandulenko2018-07-20 06:43:33 +0000
commitbdc477bef9d4ec9691e77c4de867a30d08865c46 (patch)
tree6f32addc60b63768cede07d53aad234a73e5a694 /engines/illusions/pathfinder.h
parent7c46d891c6acc414e69c5cf624f45b7b297fe584 (diff)
downloadscummvm-rg350-bdc477bef9d4ec9691e77c4de867a30d08865c46.tar.gz
scummvm-rg350-bdc477bef9d4ec9691e77c4de867a30d08865c46.tar.bz2
scummvm-rg350-bdc477bef9d4ec9691e77c4de867a30d08865c46.zip
ILLUSIONS: Implement convertPanXCoord() to support audio panning.
Wire up startScriptThread2() calls. Add namedpoint logic.
Diffstat (limited to 'engines/illusions/pathfinder.h')
-rw-r--r--engines/illusions/pathfinder.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/illusions/pathfinder.h b/engines/illusions/pathfinder.h
index f337a25fc0..47cc0575c5 100644
--- a/engines/illusions/pathfinder.h
+++ b/engines/illusions/pathfinder.h
@@ -39,9 +39,10 @@ typedef Common::Array<Common::Point> PointArray;
class PathFinder {
public:
- PointArray *findPath(Common::Point sourcePt, Common::Point destPt,
+ PointArray *findPath(Camera *camera, Common::Point sourcePt, Common::Point destPt,
PointArray *walkPoints, PathLines *walkRects, WidthHeight bgDimensions);
protected:
+ PathLine _screenRect;
PointArray *_walkPoints;
PathLines *_walkRects;
WidthHeight _bgDimensions;