22 #ifndef FIFE_IATLAS_LOADER_H
23 #define FIFE_IATLAS_LOADER_H
33 #include "video/imagemanager.h"
37 typedef SharedPtr<Atlas> AtlasPtr;
41 virtual ~IAtlasLoader() { };
46 virtual bool isLoadable(
const std::string& filename) = 0;
51 virtual AtlasPtr load(
const std::string& filename) = 0;
54 typedef SharedPtr<FIFE::IAtlasLoader> AtlasLoaderPtr;
credit to phoku for his NodeDisplay example which the visitor code is adapted from ( he coded the qua...