]> git.localhorst.tv Git - l2e.git/blobdiff - src/menu/Resources.h
removed lazy fwd headers
[l2e.git] / src / menu / Resources.h
index 9ea26e665000270d0b024e7ef5eaa550cd9b07b3..656827e8f54a08b7b307d58fd40516d852c9c57b 100644 (file)
@@ -1,7 +1,14 @@
 #ifndef MENU_RESOURCES_H_
 #define MENU_RESOURCES_H_
 
-#include "../graphics/fwd.h"
+namespace graphics {
+       class CharSelect;
+       class Font;
+       class Frame;
+       struct MenuProperties;
+       class Sprite;
+       class Texture;
+}
 
 namespace menu {
 
@@ -46,7 +53,9 @@ struct Resources {
        const char *gutLabel;
        const char *mgrLabel;
 
+       const char *hpLabel;
        const char *ipLabel;
+       const char *levelLabel;
        const char *experienceLabel;
        const char *nextLevelLabel;
 
@@ -59,6 +68,7 @@ struct Resources {
        const char *itemMenuUseText;
        const char *itemMenuSortText;
        const char *itemMenuDropText;
+       const char *itemMenuSelectText;
 
        graphics::MenuProperties *inventoryMenuProperties;
 
@@ -88,6 +98,43 @@ struct Resources {
        graphics::MenuProperties *scenarioMenuProperties;
        const char *scenarioMenuHeadline;
 
+       graphics::Texture *capsulebg;
+
+       graphics::MenuProperties *capsuleMenuProperties;
+       graphics::MenuProperties *capsuleFeedMenuProperties;
+
+       const char *capsuleFeedLabel;
+       const char *capsuleChangeLabel;
+       const char *capsuleNameLabel;
+       const char *capsuleClassLabel;
+       const char *capsuleAlignmentLabel;
+       const char *capsuleTribeLabel;
+       const char *capsuleAttack1Label;
+       const char *capsuleAttack2Label;
+       const char *capsuleAttack3Label;
+       const char *capsuleNoAttackText;
+       const char *capsuleNotHungryText;
+
+       graphics::CharSelect *capsuleNameCharSelectTemplate;
+
+       graphics::Sprite *capsuleSelectTopLeft;
+       graphics::Sprite *capsuleSelectTopRight;
+       graphics::Sprite *capsuleSelectTopRepeat;
+       graphics::Sprite *capsuleSelectBottomLeft;
+       graphics::Sprite *capsuleSelectBottomRight;
+       graphics::Sprite *capsuleSelectBottomRepeat;
+       graphics::Texture *capsuleSelectLeftRepeat;
+       graphics::Texture *capsuleSelectRightRepeat;
+       graphics::Sprite *capsuleSelectLadder;
+       graphics::Sprite *capsuleSelectCursor;
+
+       graphics::Sprite *capsuleAlignmentWheel;
+       graphics::Sprite *capsuleAlignmentCursor;
+
+       graphics::Sprite *capsuleGrowthLabel;
+       graphics::Sprite *capsuleGrowthBar;
+       graphics::Sprite *capsuleGrowthBarFilled;
+
        Resources();
 
        static void CreateTypeDescription();