PJS inital texture manager class

git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/trunk@383 6778bc44-b910-0410-a7a0-be141de4315d
This commit is contained in:
psperl
2007-09-03 18:16:38 +00:00
parent 835afcacc7
commit cdea66aa3a
7 changed files with 56 additions and 8 deletions

View File

@ -0,0 +1,16 @@
#include "TextureManager.hpp"
TextureManager::TextureManager(std::string _presetURL): presetURL(_presetURL)
{
;
}
void TextureManager::loadTextures(PresetOutputs::cshape_container &shapes)
{
;
}
GLuint TextureManager::getTexture(std::string imageUrl)
{
;
}