summaryrefslogtreecommitdiff
path: root/src/being.h
diff options
context:
space:
mode:
authorChuck Miller <shadowmil@gmail.com>2009-08-01 13:14:45 -0400
committerChuck Miller <shadowmil@gmail.com>2009-08-01 21:41:46 -0400
commit455b56f0a3aa89fec063696ef86aa39986b21a5f (patch)
treee8c9b80143339762db66a627392e34df47e82df2 /src/being.h
parent5858cbe02393c64ae75952f390bd2012082bcc5b (diff)
downloadmana-client-455b56f0a3aa89fec063696ef86aa39986b21a5f.tar.gz
mana-client-455b56f0a3aa89fec063696ef86aa39986b21a5f.tar.bz2
mana-client-455b56f0a3aa89fec063696ef86aa39986b21a5f.tar.xz
mana-client-455b56f0a3aa89fec063696ef86aa39986b21a5f.zip
Remove some unused movement methods
Diffstat (limited to 'src/being.h')
-rw-r--r--src/being.h15
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; }