]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/Resources.h
fixed return type of spell menu getter in battle state
[l2e.git] / src / battle / Resources.h
index 40c0b3b92a167b04eaff8649fb9a8cc7648b3425..3876072ecad2b7dd8aca5940579f72a458fb4824 100644 (file)
@@ -37,7 +37,11 @@ struct Resources {
        graphics::Frame *selectFrame;
 
        graphics::Font *normalFont;
+       graphics::Font *disabledFont;
 
+       graphics::Sprite *menuCursor;
+
+       const char *spellMenuHeadline;
        graphics::Menu</* Spell */ void *> spellMenuPrototype;
 
 
@@ -58,6 +62,11 @@ struct Resources {
        , selectFrame(0)
 
        , normalFont(0)
+       , disabledFont(0)
+
+       , menuCursor(0)
+
+       , spellMenuHeadline("")
        { }
 
 };