X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2FHeroTag.h;h=d6ef82d349e88a25cbb504a7c0f8a39a1ae7ba37;hb=092a2dd175a4001a495c84ee85211734fb928c83;hp=8750081148cb8c94b58c845d411cf6cfd462947a;hpb=d20fa78a0dcbc95a69bb6077d2081d42b74a2d1a;p=l2e.git diff --git a/src/battle/HeroTag.h b/src/battle/HeroTag.h index 8750081..d6ef82d 100644 --- a/src/battle/HeroTag.h +++ b/src/battle/HeroTag.h @@ -1,28 +1,20 @@ -/* - * HeroTag.h - * - * Created on: Aug 6, 2012 - * Author: holy - */ - #ifndef BATTLE_HEROTAG_H_ #define BATTLE_HEROTAG_H_ -#include "Hero.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 { @@ -33,9 +25,9 @@ public: public: const graphics::Sprite *HeroSprite() const; - geometry::Vector HeroOffset() const; + math::Vector HeroOffset() const; - void Render(SDL_Surface *screen, int width, int height, const geometry::Vector &position, bool active) const; + void Render(SDL_Surface *screen, int width, int height, const math::Vector &position, bool active) const; private: const BattleState *battle;