]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/Resources.h
added Maxim's IP attacks
[l2e.git] / src / battle / Resources.h
index c0fb48cf159bec8ca258ab68f8eed59b37a8fcea..5e56eb322296445b1c8ddfc17f567d9ea81627a2 100644 (file)
@@ -13,6 +13,7 @@
 namespace common {
        class Inventory;
        class Item;
+       class Spell;
 }
 namespace graphics {
        class Font;
@@ -50,14 +51,14 @@ 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;
 
 
        Resources()