#ifndef TEXTURE_CACHE_HPP #define TEXTURE_CACHE_HPP #include "gl_texture.hpp" #include class TextureCache { private: std::unordered_map texture_map_; public: TextureCache(); ~TextureCache(); GlTexture getTexture(const std::string &texture_path); }; #endif