22 #ifndef FIFE_ANIMATION_LOADER_H
23 #define FIFE_ANIMATION_LOADER_H
33 #include "video/animation.h"
35 #include "ianimationloader.h"
42 class AnimationLoader :
public IAnimationLoader {
44 AnimationLoader(VFS* vfs, ImageManager* imageManager);
49 virtual bool isLoadable(
const std::string& filename);
54 virtual AnimationPtr load(
const std::string& filename);
58 ImageManager* m_imageManager;
credit to phoku for his NodeDisplay example which the visitor code is adapted from ( he coded the qua...