diff options
Diffstat (limited to 'src/being/being.h')
-rw-r--r-- | src/being/being.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/being/being.h b/src/being/being.h index 9f9f3992d..42fd65b86 100644 --- a/src/being/being.h +++ b/src/being/being.h @@ -136,25 +136,10 @@ class Being notfinal : public ActorSprite, /** * Makes this being take the next tile of its path. - * TODO: Used by eAthena only? */ virtual void nextTile(); /** - * Get the current X pixel offset. - * TODO: Used by eAthena only? - */ - int getXOffset() const A_WARN_UNUSED - { return getOffset(BeingDirection::LEFT, BeingDirection::RIGHT); } - - /** - * Get the current Y pixel offset. - * TODO: Used by eAthena only? - */ - int getYOffset() const A_WARN_UNUSED - { return getOffset(BeingDirection::UP, BeingDirection::DOWN); } - - /** * Creates a path for the being from current position to ex and ey */ void setDestination(const int dstX, const int dstY); |