]> git.localhorst.tv Git - l2e.git/blob - src/menu/Resources.h
0b3b435f7019e80dc8e1f4f860c7ed9ce3bab1de
[l2e.git] / src / menu / Resources.h
1 /*
2  * Resources.h
3  *
4  *  Created on: Oct 21, 2012
5  *      Author: holy
6  */
7
8 #ifndef MENU_RESOURCES_H_
9 #define MENU_RESOURCES_H_
10
11 #include "../graphics/fwd.h"
12
13 namespace menu {
14
15 struct Resources {
16
17         graphics::Texture *menubg;
18
19         graphics::Font *normalFont;
20         graphics::Font *statusFont;
21
22         graphics::Sprite *statusLabels;
23         graphics::Frame *statusFrame;
24
25         graphics::MenuProperties *mainMenuProperties;
26         const char *mainMenuItemText;
27         const char *mainMenuSpellText;
28         const char *mainMenuCapsuleText;
29         const char *mainMenuEquipmentText;
30         const char *mainMenuStatusText;
31         const char *mainMenuChangeText;
32         const char *mainMenuConfigText;
33         const char *mainMenuScenarioText;
34
35         const char *mainMenuTimeText;
36         const char *mainMenuGoldText;
37
38         graphics::Sprite *heroCursor;
39         int heroCursorBlinkTime;
40
41         const char *noEquipmentText;
42
43         graphics::Sprite *shoulderNav;
44
45         const char *atpLabel;
46         const char *dfpLabel;
47         const char *strLabel;
48         const char *aglLabel;
49         const char *intLabel;
50         const char *gutLabel;
51         const char *mgrLabel;
52
53         Resources();
54
55 };
56
57 }
58
59 #endif /* MENU_RESOURCES_H_ */