X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2FHeroTag.h;h=d3bd9f56b234a5a9a0736d6677acc398422bec36;hb=667e1d9c6a78d0b608b518a4e5b5c31bc30e4e89;hp=c21f8570b63c5de5b2668502f3e876f9c806fd80;hpb=62c0a1d0ac98eb51418e4daa59e80b6cc97b522f;p=l2e.git diff --git a/src/battle/HeroTag.h b/src/battle/HeroTag.h index c21f857..d3bd9f5 100644 --- a/src/battle/HeroTag.h +++ b/src/battle/HeroTag.h @@ -1,43 +1,33 @@ -/* - * HeroTag.h - * - * Created on: Aug 6, 2012 - * Author: holy - */ - #ifndef BATTLE_HEROTAG_H_ #define BATTLE_HEROTAG_H_ -#include "Hero.h" -#include "../geometry/Point.h" -#include "../geometry/Vector.h" - -#include - +namespace battle { + class BattleState; +} namespace graphics { - class Font; - class Frame; - class Gauge; class Sprite; } +namespace math { + template + class Vector; +} -namespace battle { +#include -class BattleState; +namespace battle { class HeroTag { public: - HeroTag() : battle(0), index(0) { }; + HeroTag() : battle(0), index(0) { } HeroTag(const BattleState *battle, int heroIndex) : battle(battle), index(heroIndex) { } - ~HeroTag() { } public: const graphics::Sprite *HeroSprite() const; - geometry::Vector HeroOffset() const; + math::Vector HeroOffset() const; - void Render(SDL_Surface *screen, int width, int height, geometry::Point position, bool active) const; + void Render(SDL_Surface *screen, int width, int height, const math::Vector &position, bool active) const; private: const BattleState *battle; @@ -47,4 +37,4 @@ private: } -#endif /* BATTLE_HEROTAG_H_ */ +#endif