X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fmenu%2FResources.h;h=9ea26e665000270d0b024e7ef5eaa550cd9b07b3;hb=107657a15613dfd6f02556e163abf6a4cb3cdd39;hp=a0c60e15c95b86dca21f66bef3397e4acfc85e3c;hpb=559457f14d914f6b1cb5d588a0ccf97529f011d1;p=l2e.git diff --git a/src/menu/Resources.h b/src/menu/Resources.h index a0c60e1..9ea26e6 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,9 +7,12 @@ namespace menu { struct Resources { + static const int TYPE_ID = 701; + graphics::Texture *menubg; graphics::Font *normalFont; + graphics::Font *inactiveFont; graphics::Font *statusFont; graphics::Sprite *statusLabels; @@ -59,8 +55,44 @@ struct Resources { const char *nextLabel; const char *returnLabel; + graphics::MenuProperties *itemMenuProperties; + const char *itemMenuUseText; + const char *itemMenuSortText; + const char *itemMenuDropText; + + graphics::MenuProperties *inventoryMenuProperties; + + graphics::MenuProperties *spellMenuProperties; + + graphics::MenuProperties *equipmentActionMenuProperties; + graphics::MenuProperties *equipmentMenuProperties; + const char *equipMenuEquipLabel; + const char *equipMenuStrongestLabel; + const char *equipMenuRemoveLabel; + 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; + Resources(); + static void CreateTypeDescription(); + static void Construct(void *); + }; }