X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fmenu%2FResources.h;h=be2fb2559284568a753346e6404d221710be49c1;hb=7a14d357d9d05c2bac1efcdcf57365a4ce13729a;hp=8778cb5a27420afd56acd2d2b132d11e68612045;hpb=1852ed1ca9ccfb63183fec12efeeaccc211a9f72;p=l2e.git diff --git a/src/menu/Resources.h b/src/menu/Resources.h index 8778cb5..be2fb25 100644 --- a/src/menu/Resources.h +++ b/src/menu/Resources.h @@ -1,10 +1,3 @@ -/* - * Resources.h - * - * Created on: Oct 21, 2012 - * Author: holy - */ - #ifndef MENU_RESOURCES_H_ #define MENU_RESOURCES_H_ @@ -14,14 +7,14 @@ namespace menu { struct Resources { + static const int TYPE_ID = 701; + graphics::Texture *menubg; graphics::Font *normalFont; + graphics::Font *inactiveFont; graphics::Font *statusFont; - graphics::Sprite *menuCursor; - graphics::Sprite *menuActiveCursor; - graphics::Sprite *statusLabels; graphics::Frame *statusFrame; @@ -53,7 +46,9 @@ struct Resources { const char *gutLabel; const char *mgrLabel; + const char *hpLabel; const char *ipLabel; + const char *levelLabel; const char *experienceLabel; const char *nextLevelLabel; @@ -66,6 +61,7 @@ struct Resources { const char *itemMenuUseText; const char *itemMenuSortText; const char *itemMenuDropText; + const char *itemMenuSelectText; graphics::MenuProperties *inventoryMenuProperties; @@ -92,8 +88,31 @@ struct Resources { const char *configMusicStereo; const char *configMusicMono; + 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; + Resources(); + static void CreateTypeDescription(); + static void Construct(void *); + }; }