X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2FSmallHeroTag.h;h=7ab47e611a3f5771647d0ae7f15f5a89547acbc3;hb=092a2dd175a4001a495c84ee85211734fb928c83;hp=c17d540c0609d98dc0d793113cc043ec0c6ddede;hpb=d20fa78a0dcbc95a69bb6077d2081d42b74a2d1a;p=l2e.git diff --git a/src/battle/SmallHeroTag.h b/src/battle/SmallHeroTag.h index c17d540..7ab47e6 100644 --- a/src/battle/SmallHeroTag.h +++ b/src/battle/SmallHeroTag.h @@ -1,27 +1,18 @@ -/* - * SmallHeroTag.h - * - * Created on: Aug 11, 2012 - * Author: holy - */ - #ifndef BATTLE_SMALLHEROTAG_H_ #define BATTLE_SMALLHEROTAG_H_ -#include "../geometry/Vector.h" +namespace battle { + class BattleState; +} +namespace math { + template + class Vector; +} #include -namespace graphics { - class Font; - class Frame; - class Gauge; -} - namespace battle { -class BattleState; - class SmallHeroTag { public: @@ -29,7 +20,7 @@ public: SmallHeroTag(const BattleState *battle, int heroIndex) : battle(battle), index(heroIndex) { } - void Render(SDL_Surface *screen, int width, int height, const geometry::Vector &position) const; + void Render(SDL_Surface *screen, int width, int height, const math::Vector &position) const; private: const BattleState *battle;