]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/Resources.h
changed number animation prototype to plain animation pointer
[l2e.git] / src / battle / Resources.h
index 5e68281548b4e1bc8cef7b9de7d01bb22a7cc62b..49d30c1fd49bf7693fcae0deeecd7a7e0a8c993d 100644 (file)
@@ -8,7 +8,6 @@
 #ifndef BATTLE_RESOURCES_H_
 #define BATTLE_RESOURCES_H_
 
-#include "../graphics/ComplexAnimation.h"
 #include "../graphics/Menu.h"
 
 #include <SDL.h>
@@ -19,6 +18,7 @@ namespace common {
        class Spell;
 }
 namespace graphics {
+       class Animation;
        class Font;
        class Frame;
        class Gauge;
@@ -72,7 +72,7 @@ struct Resources {
 
        const char *escapeText;
 
-       graphics::ComplexAnimation numberAnimationPrototype;
+       const graphics::Animation *numberAnimationPrototype;
 
        const graphics::Sprite *bigNumberSprite;
        const graphics::Sprite *greenNumberSprite;
@@ -137,6 +137,7 @@ struct Resources {
 
        , escapeText("")
 
+       , numberAnimationPrototype(0)
        , bigNumberSprite(0)
        , greenNumberSprite(0)