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