]> git.localhorst.tv Git - l2e.git/blobdiff - src/menu/Resources.h
removed lazy fwd headers
[l2e.git] / src / menu / Resources.h
index 5b581e6bd9dc97ba3c9db8104892b4b52e90f031..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 {
 
@@ -61,6 +68,7 @@ struct Resources {
        const char *itemMenuUseText;
        const char *itemMenuSortText;
        const char *itemMenuDropText;
+       const char *itemMenuSelectText;
 
        graphics::MenuProperties *inventoryMenuProperties;
 
@@ -93,6 +101,7 @@ struct Resources {
        graphics::Texture *capsulebg;
 
        graphics::MenuProperties *capsuleMenuProperties;
+       graphics::MenuProperties *capsuleFeedMenuProperties;
 
        const char *capsuleFeedLabel;
        const char *capsuleChangeLabel;
@@ -104,6 +113,27 @@ struct Resources {
        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();