/* ---------------------------------------------------------------------------- * resourcemanager.cpp * * Copyright (c) 2017 Yann Herklotz Grave -- MIT License * See file LICENSE for more details * ---------------------------------------------------------------------------- */ #include "resourcemanager.hpp" namespace yage { TextureCache ResourceManager::texture_cache_; Texture ResourceManager::getTexture(const std::string& texture_path) { return texture_cache_.getTexture(texture_path); } } // yage