]> git.localhorst.tv Git - l2e.git/blobdiff - src/menu/Resources.h
added basic config menu
[l2e.git] / src / menu / Resources.h
index a0c60e15c95b86dca21f66bef3397e4acfc85e3c..8778cb5a27420afd56acd2d2b132d11e68612045 100644 (file)
@@ -19,6 +19,9 @@ struct Resources {
        graphics::Font *normalFont;
        graphics::Font *statusFont;
 
+       graphics::Sprite *menuCursor;
+       graphics::Sprite *menuActiveCursor;
+
        graphics::Sprite *statusLabels;
        graphics::Frame *statusFrame;
 
@@ -59,6 +62,36 @@ 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;
+
        Resources();
 
 };