diff options
Diffstat (limited to 'src/game-server/character.h')
-rw-r--r-- | src/game-server/character.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/game-server/character.h b/src/game-server/character.h index b5ef578a..4dc077e8 100644 --- a/src/game-server/character.h +++ b/src/game-server/character.h @@ -424,6 +424,10 @@ class Character : public Being void triggerLoginCallback(); + virtual void addAttack(AttackInfo *attackInfo); + + virtual void removeAttack(AttackInfo *attackInfo); + protected: /** * Gets the way the actor blocks pathfinding for other objects @@ -431,6 +435,7 @@ class Character : public Being virtual BlockType getBlockType() const { return BLOCKTYPE_CHARACTER; } + private: bool specialUseCheck(SpecialMap::iterator it); @@ -527,6 +532,8 @@ class Character : public Being Timeout mMuteTimeout; /**< Time until the character is no longer muted */ + AttackInfo *mKnuckleAttackInfo; + static Script::Ref mDeathCallback; static Script::Ref mDeathAcceptedCallback; static Script::Ref mLoginCallback; |