diff options
Diffstat (limited to 'engines/draci/walking.h')
| -rw-r--r-- | engines/draci/walking.h | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/engines/draci/walking.h b/engines/draci/walking.h index a2bb9a7410..2a7f27dd80 100644 --- a/engines/draci/walking.h +++ b/engines/draci/walking.h @@ -30,6 +30,8 @@  namespace Draci { +class Sprite; +  class WalkingMap {  public:  	WalkingMap() : _realWidth(0), _realHeight(0), _deltaX(1), _deltaY(1), @@ -37,6 +39,7 @@ public:  	void load(const byte *data, uint length);  	bool isWalkable(int x, int y) const; +	Sprite *constructDrawableOverlay();  	Common::Point findNearestWalkable(int x, int y, Common::Rect searchRect) const;  private: | 
