X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fmenu%2FResources.h;h=47e46256f668fbcf2f8db6425c66c9908c059747;hb=10a8d3a83e7ad6815bc9f752922239ef32073a5e;hp=acc99ad3a6bbcc076c5ee9dbf569a47691c7ee35;hpb=f2abfc21845c29024ce2478f95429801e91ef8e8;p=l2e.git diff --git a/src/menu/Resources.h b/src/menu/Resources.h index acc99ad..47e4625 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; @@ -79,8 +72,41 @@ struct Resources { const char *equipMenuRemoveAllLabel; const char *equipMenuDropLabel; + graphics::MenuProperties *configMenuProperties; + const char *configMessageSpeedLabel; + const char *configMessageSpeedFast; + const char *configMessageSpeedNormal; + const char *configMessageSpeedSlow; + const char *configBattleCursorLabel; + const char *configStatusCursorLabel; + const char *configCursorClear; + const char *configCursorMemory; + const char *configMusicLabel; + const char *configMusicStereo; + const char *configMusicMono; + + graphics::MenuProperties *scenarioMenuProperties; + const char *scenarioMenuHeadline; + + graphics::Texture *capsulebg; + + graphics::MenuProperties *capsuleMenuProperties; + + 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; + Resources(); + static void CreateTypeDescription(); + static void Construct(void *); + }; }