]> git.localhorst.tv Git - l2e.git/blob - src/battle/SmallHeroTag.h
removed useless comments
[l2e.git] / src / battle / SmallHeroTag.h
1 #ifndef BATTLE_SMALLHEROTAG_H_
2 #define BATTLE_SMALLHEROTAG_H_
3
4 namespace battle {
5         class BattleState;
6 }
7 namespace math {
8         template<class>
9         class Vector;
10 }
11
12 #include <SDL.h>
13
14 namespace battle {
15
16 class SmallHeroTag {
17
18 public:
19         SmallHeroTag() : battle(0), index(0) { }
20         SmallHeroTag(const BattleState *battle, int heroIndex)
21         : battle(battle), index(heroIndex) { }
22
23         void Render(SDL_Surface *screen, int width, int height, const math::Vector<int> &position) const;
24
25 private:
26         const BattleState *battle;
27         int index;
28
29 };
30
31 }
32
33 #endif