]> git.localhorst.tv Git - l2e.git/blob - src/menu/Resources.h
added equipment in stats screen
[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         Resources();
46
47 };
48
49 }
50
51 #endif /* MENU_RESOURCES_H_ */