From c514e44b73b3fc4db492e4bd333fa223c6c1eef5 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Mon, 8 Jan 2018 14:09:43 +0000 Subject: [Engine] Adding entity/component system --- yage/core/resourcemanager.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'yage/core/resourcemanager.cpp') diff --git a/yage/core/resourcemanager.cpp b/yage/core/resourcemanager.cpp index ec3761b8..2105f7e0 100644 --- a/yage/core/resourcemanager.cpp +++ b/yage/core/resourcemanager.cpp @@ -14,7 +14,8 @@ namespace yage TextureCache ResourceManager::texture_cache_; -Texture ResourceManager::getTexture(const std::string &texture_path, int x, int y) +Texture ResourceManager::getTexture(const std::string &texture_path, int x, + int y) { return texture_cache_.getTexture(texture_path, x, y); } -- cgit