diff options
Diffstat (limited to 'src/being.h')
-rw-r--r-- | src/being.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/being.h b/src/being.h index c83d0fb48..1569d5df8 100644 --- a/src/being.h +++ b/src/being.h @@ -661,6 +661,12 @@ class Being : public ActorSprite, public ConfigListener Uint8 calcDirection() const; + void setAttackDelay(int n) + { mAttackDelay = n; } + + int getAttackDelay() + { return mAttackDelay; } + protected: /** * Sets the new path for this being. @@ -783,6 +789,7 @@ class Being : public ActorSprite, public ConfigListener bool mErased; bool mEnemy; std::string mIp; + int mAttackDelay; unsigned int mPvpRank; int *mSpriteRemap; int *mSpriteHide; |