]> git.localhorst.tv Git - l2e.git/blob - src/battle/Resources.h
8d1144f6b30bdc60efd5437f5981fd1e08585bd8
[l2e.git] / src / battle / Resources.h
1 /*
2  * Resources.h
3  *
4  *  Created on: Aug 8, 2012
5  *      Author: holy
6  */
7
8 #ifndef BATTLE_RESOURCES_H_
9 #define BATTLE_RESOURCES_H_
10
11 namespace graphics {
12         class Font;
13         class Frame;
14         class Gauge;
15         class Sprite;
16 }
17
18 namespace battle {
19
20 struct Resources {
21
22         graphics::Sprite *moveIcons;
23         graphics::Sprite *attackIcons;
24
25         graphics::Frame *heroTagFrame;
26         graphics::Frame *activeHeroTagFrame;
27
28         graphics::Font *heroTagFont;
29         graphics::Sprite *heroTagLabels;
30
31         graphics::Gauge *healthGauge;
32         graphics::Gauge *manaGauge;
33         graphics::Gauge *ikariGauge;
34
35         graphics::Frame *selectFrame;
36
37         graphics::Font *normalFont;
38
39
40         Resources()
41         : moveIcons(0)
42         , attackIcons(0)
43
44         , heroTagFrame(0)
45         , activeHeroTagFrame(0)
46
47         , heroTagFont(0)
48         , heroTagLabels(0)
49
50         , healthGauge(0)
51         , manaGauge(0)
52         , ikariGauge(0)
53
54         , selectFrame(0)
55
56         , normalFont(0)
57         { }
58
59 };
60
61 }
62
63 #endif /* BATTLE_RESOURCES_H_ */