/* ---------------------------------------------------------------------------- * texturecache.hpp * * Copyright (c) 2017 Yann Herklotz Grave -- MIT License * See file LICENSE for more details * ---------------------------------------------------------------------------- */ #ifndef TEXTURE_CACHE_HPP #define TEXTURE_CACHE_HPP #include "texture.hpp" #include namespace yage { class TextureCache { private: std::unordered_map texture_map_; public: TextureCache(); Texture getTexture(const std::string& texture_path); }; } // yage #endif