]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/Resources.h
moved spell menu template to resources
[l2e.git] / src / battle / Resources.h
index 7c37bcaf1cbd14966aee66ceb7ba063f16fd7f78..40c0b3b92a167b04eaff8649fb9a8cc7648b3425 100644 (file)
@@ -8,6 +8,8 @@
 #ifndef BATTLE_RESOURCES_H_
 #define BATTLE_RESOURCES_H_
 
+#include "../graphics/Menu.h"
+
 namespace graphics {
        class Font;
        class Frame;
@@ -34,6 +36,10 @@ struct Resources {
 
        graphics::Frame *selectFrame;
 
+       graphics::Font *normalFont;
+
+       graphics::Menu</* Spell */ void *> spellMenuPrototype;
+
 
        Resources()
        : moveIcons(0)
@@ -50,6 +56,8 @@ struct Resources {
        , ikariGauge(0)
 
        , selectFrame(0)
+
+       , normalFont(0)
        { }
 
 };