]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/HeroTag.h
removed lazy fwd headers
[l2e.git] / src / battle / HeroTag.h
index c60634853035bf58b76800c48e71b2e90d2f1426..d6ef82d349e88a25cbb504a7c0f8a39a1ae7ba37 100644 (file)
@@ -1,39 +1,37 @@
-/*
- * HeroTag.h
- *
- *  Created on: Aug 6, 2012
- *      Author: holy
- */
-
 #ifndef BATTLE_HEROTAG_H_
 #define BATTLE_HEROTAG_H_
 
-#include "../geometry/Point.h"
+namespace battle {
+       class BattleState;
+}
+namespace graphics {
+       class Sprite;
+}
+namespace math {
+       template<class>
+       class Vector;
+}
 
 #include <SDL.h>
 
 namespace battle {
 
-class Hero;
-
 class HeroTag {
 
 public:
-       enum Alignment {
-               LEFT,
-               RIGHT
-       };
+       HeroTag() : battle(0), index(0) { }
+       HeroTag(const BattleState *battle, int heroIndex)
+       : battle(battle), index(heroIndex) { }
 
 public:
-       HeroTag(const Hero *hero, Alignment align) : hero(hero), align(align) { }
-       ~HeroTag() { }
+       const graphics::Sprite *HeroSprite() const;
+       math::Vector<int> HeroOffset() const;
 
-public:
-       void Render(SDL_Surface *screen, int width, int height, geometry::Point<int> position, bool active) const;
+       void Render(SDL_Surface *screen, int width, int height, const math::Vector<int> &position, bool active) const;
 
 private:
-       const Hero *hero;
-       Alignment align;
+       const BattleState *battle;
+       int index;
 
 };