changed to use FileLoader::Path argument

git-svn-id: svn://anubis/misc/TextureLoader@179 bd8a9e45-a331-0410-811e-c64571078777
This commit is contained in:
josh 2009-10-17 21:24:32 +00:00
parent cef6439579
commit 032607b812

View File

@ -9,9 +9,8 @@
class TextureLoader
{
public:
virtual GLuint loadTexture(
const std::string & fullPath,
const std::string & shortPath,
virtual GLuint load(
const FileLoader::Path & path,
FileLoader & fileLoader) = 0;
};