aboutsummaryrefslogtreecommitdiffstats
path: root/yage/core/resourcemanager.cpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-01-08 14:09:43 +0000
committerYann Herklotz <ymherklotz@gmail.com>2018-01-08 14:09:43 +0000
commitc514e44b73b3fc4db492e4bd333fa223c6c1eef5 (patch)
treebb1cc421392f263531b82ad1a67454eb351bbd74 /yage/core/resourcemanager.cpp
parent0a42123b150e06f28ae82e460e854984c2dc9648 (diff)
downloadYAGE-c514e44b73b3fc4db492e4bd333fa223c6c1eef5.tar.gz
YAGE-c514e44b73b3fc4db492e4bd333fa223c6c1eef5.zip
[Engine] Adding entity/component system
Diffstat (limited to 'yage/core/resourcemanager.cpp')
-rw-r--r--yage/core/resourcemanager.cpp3
1 files changed, 2 insertions, 1 deletions
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);
}