diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2006-12-12 15:06:06 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2006-12-12 15:06:06 +0000 |
commit | 7467afb637960fc8f3c8e631b95bb3e662285057 (patch) | |
tree | 34ba6896c8795ab3c1e6bb7fccbce27a5dd491ed /src/animatedsprite.cpp | |
parent | f4f6c66a1ebe115dde9dc7a9b793b36ddc708d3c (diff) | |
download | mana-7467afb637960fc8f3c8e631b95bb3e662285057.tar.gz mana-7467afb637960fc8f3c8e631b95bb3e662285057.tar.bz2 mana-7467afb637960fc8f3c8e631b95bb3e662285057.tar.xz mana-7467afb637960fc8f3c8e631b95bb3e662285057.zip |
Moved Action, Animation and Frame (renamed from AnimationPhase) classes into
the resources directory, since they are part of the SpriteDef class.
Diffstat (limited to 'src/animatedsprite.cpp')
-rw-r--r-- | src/animatedsprite.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/animatedsprite.cpp b/src/animatedsprite.cpp index 46369c80..3d1979a9 100644 --- a/src/animatedsprite.cpp +++ b/src/animatedsprite.cpp @@ -23,14 +23,14 @@ #include "animatedsprite.h" -#include "animation.h" -#include "action.h" #include "graphics.h" #include "log.h" +#include "resources/action.h" +#include "resources/animation.h" +#include "resources/image.h" #include "resources/resourcemanager.h" #include "resources/spriteset.h" -#include "resources/image.h" #include "utils/xml.h" |