X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2FHeroTag.h;h=d361252dec1e48070ad9197b8d112981eb662cf4;hb=8723daa89e877ac98e6012b0c37e3b4eb6131426;hp=c60634853035bf58b76800c48e71b2e90d2f1426;hpb=628b3a7276d0b330719e05504b23bafcf88f8fca;p=l2e.git diff --git a/src/battle/HeroTag.h b/src/battle/HeroTag.h index c606348..d361252 100644 --- a/src/battle/HeroTag.h +++ b/src/battle/HeroTag.h @@ -12,9 +12,18 @@ #include +namespace graphics { + class Font; + class Frame; + class Gauge; + class Sprite; +} + namespace battle { +class AttackChoice; class Hero; +struct Resources; class HeroTag { @@ -25,7 +34,8 @@ public: }; public: - HeroTag(const Hero *hero, Alignment align) : hero(hero), align(align) { } + HeroTag(const Hero *hero, const AttackChoice *choice, const Resources *res, Alignment align) + : hero(hero), choice(choice), res(res), align(align) { } ~HeroTag() { } public: @@ -33,6 +43,8 @@ public: private: const Hero *hero; + const AttackChoice *choice; + const Resources *res; Alignment align; };