summaryrefslogtreecommitdiff
path: root/texture.h
diff options
context:
space:
mode:
Diffstat (limited to 'texture.h')
-rw-r--r--texture.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/texture.h b/texture.h
deleted file mode 100644
index 9955f01..0000000
--- a/texture.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef TEXTURE_H
-#define TEXTURE_H
-
-#include <GL/glew.h>
-#include <string>
-
-class Texture {
-public:
- explicit Texture(const std::string & fileName);
-
- Texture(const Texture &) = delete;
- void operator=(const Texture &) = delete;
-
- virtual ~Texture();
-
- void Bind() const;
-
-protected:
-private:
- GLuint m_texture;
-};
-
-#endif