aboutsummaryrefslogtreecommitdiffstats
path: root/include/YAGE/texturecache.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/YAGE/texturecache.hpp')
-rw-r--r--include/YAGE/texturecache.hpp13
1 files changed, 6 insertions, 7 deletions
diff --git a/include/YAGE/texturecache.hpp b/include/YAGE/texturecache.hpp
index ac318230..0de5c12a 100644
--- a/include/YAGE/texturecache.hpp
+++ b/include/YAGE/texturecache.hpp
@@ -13,19 +13,18 @@
#include <unordered_map>
-namespace yage
-{
+namespace yage {
-class TextureCache
-{
+class TextureCache {
private:
std::unordered_map<std::string, Texture> texture_map_;
+
public:
TextureCache();
- Texture getTexture(const std::string &texture_path);
+ Texture getTexture(const std::string& texture_path);
};
-
-} // yage
+
+} // yage
#endif