00001 /********************* 00002 * Untitledurpose 00003 * uthor 00004 **********************/ 00005 #pragma once 00006 #define NOMINMAX 00007 #include "constants.h" 00008 #include <string> 00009 #include "types.h" 00010 #include "GSingletonManager.h" 00011 00012 using namespace std; 00013 00014 class GAnimationLoader : public GSingletonManager<GAnimationLoader> 00015 { 00016 public: 00017 int Load(std::string filename, animationlibrary_t *library); 00018 };