added const correctness to texture manager load/unload functions. also custom shape getImageUrl

git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/trunk@385 6778bc44-b910-0410-a7a0-be141de4315d
This commit is contained in:
w1z7ard
2007-09-03 18:22:52 +00:00
parent a667e84aac
commit e80ff78999
3 changed files with 5 additions and 5 deletions

View File

@ -5,12 +5,12 @@ TextureManager::TextureManager(std::string _presetURL): presetURL(_presetURL)
;
}
void TextureManager::loadTextures(PresetOutputs::cshape_container &shapes)
void TextureManager::loadTextures(const PresetOutputs::cshape_container &shapes)
{
;
}
void TextureManager::unloadTextures(PresetOutputs::cshape_container &shapes)
void TextureManager::unloadTextures(const PresetOutputs::cshape_container &shapes)
{
;
}