aboutsummaryrefslogtreecommitdiffstats
path: root/include/YAGE/resourcemanager.hpp
blob: 61642caf776d525f09c254fa832abf6131976cfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef RESOURCE_MANAGER_HPP
#define RESOURCE_MANAGER_HPP

#include "texture.hpp"
#include "texturecache.hpp"

#include <string>

namespace yage
{

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

#endif