aboutsummaryrefslogtreecommitdiffstats
path: root/include/YAGE/resource_manager.hpp
blob: 155515a3e090e6d91bbcb3ad1b85a3bdd8c50fbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef RESOURCE_MANAGER_HPP
#define RESOURCE_MANAGER_HPP

#include "gl_texture.hpp"
#include "texture_cache.hpp"

#include <string>

class ResourceManager
{
private:
    static TextureCache texture_cache_;
public:
    static GlTexture getTexture(const std::string &texture_path);
};


#endif