From cef64395796a9ce4e033792e6515aa86f7667a58 Mon Sep 17 00:00:00 2001 From: josh Date: Sat, 17 Oct 2009 19:46:53 +0000 Subject: [PATCH] added initial TextureLoader interface header file git-svn-id: svn://anubis/misc/TextureLoader@176 bd8a9e45-a331-0410-811e-c64571078777 --- TextureLoader.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 TextureLoader.h 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