X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2FHero.h;h=c0bd41a024d8f6db16b6accfcf3a345cbbe6b089;hb=8456b7dac2051bfd2b507a39854c1428eb4d91cd;hp=97a21c23377d177d855db1bbdcda0194266bbf24;hpb=e52f2d15302057cbcc4a2dcca1ae9b25dc12dbcd;p=l2e.git diff --git a/src/battle/Hero.h b/src/battle/Hero.h index 97a21c2..c0bd41a 100644 --- a/src/battle/Hero.h +++ b/src/battle/Hero.h @@ -22,6 +22,8 @@ namespace graphics { namespace battle { +class AttackAnimation; + class Hero { public: @@ -69,6 +71,8 @@ public: bool HasRing() const { return ring; } bool HasJewel() const { return jewel; } + class AttackAnimation *MeleeAnimation() { return meleeAnimation; } + const class AttackAnimation *MeleeAnimation() const { return meleeAnimation; } graphics::Animation *AttackAnimation() { return attackAnimation; } const graphics::Animation *AttackAnimation() const { return attackAnimation; } graphics::Animation *SpellAnimation() { return spellAnimation; } @@ -95,6 +99,7 @@ public: void AddSpell(const common::Spell *s) { spells.push_back(s); } + void SetMeleeAnimation(class AttackAnimation *a) { meleeAnimation = a; } void SetAttackAnimation(graphics::Animation *a) { attackAnimation = a; } void SetSpellAnimation(graphics::Animation *a) { spellAnimation = a; } @@ -109,6 +114,7 @@ private: const common::Item *ring; const common::Item *jewel; + class AttackAnimation *meleeAnimation; graphics::Animation *attackAnimation; graphics::Animation *spellAnimation;