aboutsummaryrefslogtreecommitdiffstats
path: root/src/resourcemanager.cpp
blob: ca5ac3f332201db90bf09889cebe80665506c8d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "resourcemanager.hpp"

namespace yage
{

TextureCache ResourceManager::texture_cache_;

GlTexture ResourceManager::getTexture(const std::string &texture_path)
{
    return texture_cache_.getTexture(texture_path);
}
    
} // yage