22 #ifndef FIFE_IANIMATION_LOADER_H
23 #define FIFE_IANIMATION_LOADER_H
33 #include "video/animation.h"
37 class IAnimationLoader {
39 virtual ~IAnimationLoader() { };
44 virtual bool isLoadable(
const std::string& filename) = 0;
49 virtual AnimationPtr load(
const std::string& filename) = 0;
52 typedef SharedPtr<IAnimationLoader> AnimationLoaderPtr;
credit to phoku for his NodeDisplay example which the visitor code is adapted from ( he coded the qua...