aboutsummaryrefslogtreecommitdiffstats
path: root/include/yage/texture_cache.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/yage/texture_cache.hpp')
-rw-r--r--include/yage/texture_cache.hpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/include/yage/texture_cache.hpp b/include/yage/texture_cache.hpp
deleted file mode 100644
index 44dba2f8..00000000
--- a/include/yage/texture_cache.hpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef TEXTURE_CACHE_HPP
-#define TEXTURE_CACHE_HPP
-
-#include "gl_texture.hpp"
-
-#include <unordered_map>
-
-class TextureCache
-{
-private:
- std::unordered_map<std::string, GlTexture> texture_map_;
-public:
- TextureCache();
- ~TextureCache();
-
- GlTexture getTexture(const std::string &texture_path);
-};
-
-
-#endif