X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2FSmallHeroTag.h;h=633cf805e542f6940aa921f7ff31988ee81338be;hb=eb2ad5ffd08128d31af32f3929a3295fcfa251e9;hp=62ada00b1526f9b17200a553a7649ea4b8a157ce;hpb=2a1d9169e1f6c2dfe0f93ed40d5fb68d3da342af;p=l2e.git diff --git a/src/battle/SmallHeroTag.h b/src/battle/SmallHeroTag.h index 62ada00..633cf80 100644 --- a/src/battle/SmallHeroTag.h +++ b/src/battle/SmallHeroTag.h @@ -1,16 +1,13 @@ -/* - * SmallHeroTag.h - * - * Created on: Aug 11, 2012 - * Author: holy - */ - #ifndef BATTLE_SMALLHEROTAG_H_ #define BATTLE_SMALLHEROTAG_H_ -#include "fwd.h" -#include "../geometry/Vector.h" -#include "../graphics/fwd.h" +namespace battle { + class BattleState; +} +namespace math { + template + class Vector; +} #include @@ -23,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; @@ -33,4 +30,4 @@ private: } -#endif /* BATTLE_SMALLHEROTAG_H_ */ +#endif