#ifndef __TEXTURE_MANAGER_H__ #define __TEXTURE_MANAGER_H__ struct Texture; void TextureManager_loadTextureList(const char * filePath, const char * prefix); struct Texture * TextureManager_getTexture(const char * textureIdentifier); #endif