// // Created by Neirokan on 09.05.2020 // #ifndef ENGINE_RESOURCEMANAGER_H #define ENGINE_RESOURCEMANAGER_H #include #include #include namespace ResourceManager { // Unloads all currently loaded textures. void unloadTextures(); void unloadSoundBuffers(); void unloadFonts(); void unloadShaders(); void unloadAllResources(); // Try to load texture from file. // If success returns pointer to texture. // Otherwise returns nullptr. std::shared_ptr loadTexture(const std::string& filename); std::shared_ptr loadFont(const std::string& filename); std::shared_ptr loadSoundBuffer(const std::string& filename); }; #endif //PSEUDO3DENGINE_RESOURCEMANAGER_H