]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/Resources.h
linked equipment menu icons in battle resources
[l2e.git] / src / battle / Resources.h
index c0fb48cf159bec8ca258ab68f8eed59b37a8fcea..867915e928544e64c52a3b29334338d1c0cf8465 100644 (file)
@@ -13,6 +13,7 @@
 namespace common {
        class Inventory;
        class Item;
+       class Spell;
 }
 namespace graphics {
        class Font;
@@ -50,14 +51,21 @@ struct Resources {
        graphics::Sprite *itemTargetCursor;
 
        const char *spellMenuHeadline;
-       graphics::Menu</* Spell */ void *> spellMenuPrototype;
+       graphics::Menu<const common::Spell *> spellMenuPrototype;
 
        common::Inventory *inventory;
        const char *itemMenuHeadline;
        graphics::Menu<const common::Item *> itemMenuPrototype;
 
        const char *ikariMenuHeadline;
-       graphics::Menu</* Ikari or Item */ void *> ikariMenuPrototype;
+       graphics::Menu<const common::Item *> ikariMenuPrototype;
+
+       graphics::Sprite *weaponMenuIcon;
+       graphics::Sprite *armorMenuIcon;
+       graphics::Sprite *shieldMenuIcon;
+       graphics::Sprite *helmetMenuIcon;
+       graphics::Sprite *ringMenuIcon;
+       graphics::Sprite *jewelMenuIcon;
 
 
        Resources()
@@ -89,6 +97,13 @@ struct Resources {
        , inventory(0)
        , itemMenuHeadline("")
        , ikariMenuHeadline("")
+
+       , weaponMenuIcon(0)
+       , armorMenuIcon(0)
+       , shieldMenuIcon(0)
+       , helmetMenuIcon(0)
+       , ringMenuIcon(0)
+       , jewelMenuIcon(0)
        { }
 
 };