diff --git a/TextureLoader.h b/TextureLoader.h new file mode 100644 index 0000000..9129760 --- /dev/null +++ b/TextureLoader.h @@ -0,0 +1,18 @@ + +#ifndef TEXTURELOADER_H +#define TEXTURELOADER_H TEXTURELOADER_H + +#include +#include +#include "FileLoader/FileLoader.h" + +class TextureLoader +{ + public: + virtual GLuint loadTexture( + const std::string & fullPath, + const std::string & shortPath, + FileLoader & fileLoader) = 0; +}; + +#endif