aboutsummaryrefslogtreecommitdiffstats
path: root/src/resource_manager.cpp
blob: 7bd8dd498428ab5dd97f35575b4887c61f142b43 (plain)
1
2
3
4
5
6
7
8
#include "resource_manager.hpp"

TextureCache ResourceManager::texture_cache_;

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