]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/HeroTag.h
added some test sprites
[l2e.git] / src / battle / HeroTag.h
index c60634853035bf58b76800c48e71b2e90d2f1426..3e42edd44e9dca2accf3d1c1f1bc50a9346e50d3 100644 (file)
@@ -14,6 +14,7 @@
 
 namespace battle {
 
+class AttackChoice;
 class Hero;
 
 class HeroTag {
@@ -25,7 +26,7 @@ public:
        };
 
 public:
-       HeroTag(const Hero *hero, Alignment align) : hero(hero), align(align) { }
+       HeroTag(const Hero *hero, const AttackChoice *choice, Alignment align) : hero(hero), choice(choice), align(align) { }
        ~HeroTag() { }
 
 public:
@@ -33,6 +34,7 @@ public:
 
 private:
        const Hero *hero;
+       const AttackChoice *choice;
        Alignment align;
 
 };