aboutsummaryrefslogtreecommitdiffstats
path: root/include/yage/resource_manager.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/yage/resource_manager.hpp')
-rw-r--r--include/yage/resource_manager.hpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/include/yage/resource_manager.hpp b/include/yage/resource_manager.hpp
deleted file mode 100644
index 155515a3..00000000
--- a/include/yage/resource_manager.hpp
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef RESOURCE_MANAGER_HPP
-#define RESOURCE_MANAGER_HPP
-
-#include "gl_texture.hpp"
-#include "texture_cache.hpp"
-
-#include <string>
-
-class ResourceManager
-{
-private:
- static TextureCache texture_cache_;
-public:
- static GlTexture getTexture(const std::string &texture_path);
-};
-
-
-#endif