aboutsummaryrefslogtreecommitdiffstats
path: root/include/YAGE/texturecache.hpp
blob: 4969b27ba6997b102348e3a46655b9ad8d5e327b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef TEXTURE_CACHE_HPP
#define TEXTURE_CACHE_HPP

#include "texture.hpp"

#include <unordered_map>

namespace yage
{

class TextureCache
{
private:
    std::unordered_map<std::string, Texture> texture_map_;
public:
    TextureCache();
    ~TextureCache();

    Texture getTexture(const std::string &texture_path);
};
    
} // yage

#endif