aboutsummaryrefslogtreecommitdiffstats
path: root/yage/base/texturecache.h
diff options
context:
space:
mode:
authorTravisBot <>2017-09-21 23:32:46 +0000
committerTravisBot <>2017-09-21 23:32:46 +0000
commit1a8ec165031af3b860028ef1b360acc8e7baf9e6 (patch)
treeb9d2e956005b4de847417baf4a66ab3f028f1bc1 /yage/base/texturecache.h
parentf5ecbc445977654e84120b3b02a9fe5d86dae5c8 (diff)
downloadYAGE-1a8ec165031af3b860028ef1b360acc8e7baf9e6.tar.gz
YAGE-1a8ec165031af3b860028ef1b360acc8e7baf9e6.zip
Rebuilding documentation
Diffstat (limited to 'yage/base/texturecache.h')
-rw-r--r--yage/base/texturecache.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/yage/base/texturecache.h b/yage/base/texturecache.h
new file mode 100644
index 00000000..414c9ec3
--- /dev/null
+++ b/yage/base/texturecache.h
@@ -0,0 +1,32 @@
+/* ----------------------------------------------------------------------------
+ * texturecache.h
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
+#ifndef TEXTURE_CACHE_H
+#define TEXTURE_CACHE_H
+
+#include "texture.h"
+
+#include <unordered_map>
+
+namespace yage
+{
+
+class TextureCache
+{
+private:
+ std::unordered_map<std::string, Texture> texture_map_;
+
+public:
+ TextureCache();
+
+ Texture getTexture(const std::string &texture_path);
+};
+
+} // namespace yage
+
+#endif