summary refs log tree commit diff
path: root/src/Texture.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Texture.hpp')
-rw-r--r--src/Texture.hpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/Texture.hpp b/src/Texture.hpp
deleted file mode 100644
index 91b5e54..0000000
--- a/src/Texture.hpp
+++ /dev/null
@@ -1,17 +0,0 @@
-#pragma once
-
-#include "Image/RawImage.hpp"
-
-namespace MC {
-
-class Texture {
-public:
-    Texture(const Image::RawImage& image);
-
-    void bind();
-    void unbind();
-private:
-    uint32_t m_texture;
-};
-
-}
\ No newline at end of file