X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fmenu%2FResources.h;h=27e8e6fcd95dba3a19993a09be409f4c6d297fea;hb=HEAD;hp=5b581e6bd9dc97ba3c9db8104892b4b52e90f031;hpb=7f0a586b8238c7093a8942ff5b5c4122edd386fc;p=l2e.git diff --git a/src/menu/Resources.h b/src/menu/Resources.h index 5b581e6..27e8e6f 100644 --- a/src/menu/Resources.h +++ b/src/menu/Resources.h @@ -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(); @@ -114,4 +144,4 @@ struct Resources { } -#endif /* MENU_RESOURCES_H_ */ +#endif