]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/Resources.h
added second column in ikari menu
[l2e.git] / src / battle / Resources.h
index 5e56eb322296445b1c8ddfc17f567d9ea81627a2..1e86f64ab160b1a984797801486015ebc6a3945e 100644 (file)
@@ -59,6 +59,14 @@ struct Resources {
 
        const char *ikariMenuHeadline;
        graphics::Menu<const common::Item *> ikariMenuPrototype;
+       const char *noEquipmentText;
+
+       graphics::Sprite *weaponMenuIcon;
+       graphics::Sprite *armorMenuIcon;
+       graphics::Sprite *shieldMenuIcon;
+       graphics::Sprite *helmetMenuIcon;
+       graphics::Sprite *ringMenuIcon;
+       graphics::Sprite *jewelMenuIcon;
 
 
        Resources()
@@ -90,6 +98,14 @@ struct Resources {
        , inventory(0)
        , itemMenuHeadline("")
        , ikariMenuHeadline("")
+       , noEquipmentText("")
+
+       , weaponMenuIcon(0)
+       , armorMenuIcon(0)
+       , shieldMenuIcon(0)
+       , helmetMenuIcon(0)
+       , ringMenuIcon(0)
+       , jewelMenuIcon(0)
        { }
 
 };