]> git.localhorst.tv Git - l2e.git/blob - src/battle/Resources.h
moved spell menu template to resources
[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 #include "../graphics/Menu.h"
12
13 namespace graphics {
14         class Font;
15         class Frame;
16         class Gauge;
17         class Sprite;
18 }
19
20 namespace battle {
21
22 struct Resources {
23
24         graphics::Sprite *moveIcons;
25         graphics::Sprite *attackIcons;
26
27         graphics::Frame *heroTagFrame;
28         graphics::Frame *activeHeroTagFrame;
29
30         graphics::Font *heroTagFont;
31         graphics::Sprite *heroTagLabels;
32
33         graphics::Gauge *healthGauge;
34         graphics::Gauge *manaGauge;
35         graphics::Gauge *ikariGauge;
36
37         graphics::Frame *selectFrame;
38
39         graphics::Font *normalFont;
40
41         graphics::Menu</* Spell */ void *> spellMenuPrototype;
42
43
44         Resources()
45         : moveIcons(0)
46         , attackIcons(0)
47
48         , heroTagFrame(0)
49         , activeHeroTagFrame(0)
50
51         , heroTagFont(0)
52         , heroTagLabels(0)
53
54         , healthGauge(0)
55         , manaGauge(0)
56         , ikariGauge(0)
57
58         , selectFrame(0)
59
60         , normalFont(0)
61         { }
62
63 };
64
65 }
66
67 #endif /* BATTLE_RESOURCES_H_ */