]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/SmallHeroTag.h
removed useless comments
[l2e.git] / src / battle / SmallHeroTag.h
index 62ada00b1526f9b17200a553a7649ea4b8a157ce..633cf805e542f6940aa921f7ff31988ee81338be 100644 (file)
@@ -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>
+       class Vector;
+}
 
 #include <SDL.h>
 
@@ -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<int> &position) const;
+       void Render(SDL_Surface *screen, int width, int height, const math::Vector<int> &position) const;
 
 private:
        const BattleState *battle;
@@ -33,4 +30,4 @@ private:
 
 }
 
-#endif /* BATTLE_SMALLHEROTAG_H_ */
+#endif