From 032607b8125ae55db57e2ab70826a705a8ea814b Mon Sep 17 00:00:00 2001 From: josh Date: Sat, 17 Oct 2009 21:24:32 +0000 Subject: [PATCH] changed to use FileLoader::Path argument git-svn-id: svn://anubis/misc/TextureLoader@179 bd8a9e45-a331-0410-811e-c64571078777 --- TextureLoader.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/TextureLoader.h b/TextureLoader.h index 9129760..53ad73b 100644 --- a/TextureLoader.h +++ b/TextureLoader.h @@ -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; };