X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2FHeroTag.h;h=8750081148cb8c94b58c845d411cf6cfd462947a;hb=00dafa489224450ccc0321e238c176b9e8aa34bc;hp=c21f8570b63c5de5b2668502f3e876f9c806fd80;hpb=62c0a1d0ac98eb51418e4daa59e80b6cc97b522f;p=l2e.git diff --git a/src/battle/HeroTag.h b/src/battle/HeroTag.h index c21f857..8750081 100644 --- a/src/battle/HeroTag.h +++ b/src/battle/HeroTag.h @@ -9,7 +9,6 @@ #define BATTLE_HEROTAG_H_ #include "Hero.h" -#include "../geometry/Point.h" #include "../geometry/Vector.h" #include @@ -28,16 +27,15 @@ class BattleState; 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; - 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 geometry::Vector &position, bool active) const; private: const BattleState *battle;