diff options
Diffstat (limited to 'src/being.h')
-rw-r--r-- | src/being.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/being.h b/src/being.h index e16e464d..6e90b39d 100644 --- a/src/being.h +++ b/src/being.h @@ -183,26 +183,11 @@ class Being : public Sprite, public ConfigListener virtual void setDestination(Uint16 destX, Uint16 destY); #else /** - * Returns the path to the being's current destination - */ - virtual Path findPath(); - - /** - * Creates a path for the being from sx,sy to ex,ey - */ - void setDestination(int sx, int sy, int ex, int ey); - - /** * Creates a path for the being from current position to ex and ey */ void setDestination(int ex, int ey); /** - * Adjusts course to expected start point. - */ - void adjustCourse(int srcX, int srcY); - - /** * Returns the destination for this being. */ const Vector &getDestination() const { return mDest; } |