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