]> git.localhorst.tv Git - l2e.git/blobdiff - src/menu/Resources.h
added capsule menu stub
[l2e.git] / src / menu / Resources.h
index 026e3da100b9414406c3145ef62f6e30fe974385..47e46256f668fbcf2f8db6425c66c9908c059747 100644 (file)
@@ -1,10 +1,3 @@
-/*
- * Resources.h
- *
- *  Created on: Oct 21, 2012
- *      Author: holy
- */
-
 #ifndef MENU_RESOURCES_H_
 #define MENU_RESOURCES_H_
 
@@ -14,15 +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;
 
@@ -93,8 +85,28 @@ struct Resources {
        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 *);
+
 };
 
 }