summaryrefslogtreecommitdiffstats
path: root/src/Texture.hpp
diff options
context:
space:
mode:
authorLaG1924 <12997935+LaG1924@users.noreply.github.com>2018-08-05 02:15:12 +0200
committerLaG1924 <12997935+LaG1924@users.noreply.github.com>2018-08-05 02:15:12 +0200
commitcc3096b4f4649915cf89a5bc4f6b943d667369f5 (patch)
tree4de6e88338b65f3c66c2fdea29a067ec042012d2 /src/Texture.hpp
parentReplaced usage of old texture atlas (diff)
downloadAltCraft-cc3096b4f4649915cf89a5bc4f6b943d667369f5.tar
AltCraft-cc3096b4f4649915cf89a5bc4f6b943d667369f5.tar.gz
AltCraft-cc3096b4f4649915cf89a5bc4f6b943d667369f5.tar.bz2
AltCraft-cc3096b4f4649915cf89a5bc4f6b943d667369f5.tar.lz
AltCraft-cc3096b4f4649915cf89a5bc4f6b943d667369f5.tar.xz
AltCraft-cc3096b4f4649915cf89a5bc4f6b943d667369f5.tar.zst
AltCraft-cc3096b4f4649915cf89a5bc4f6b943d667369f5.zip
Diffstat (limited to 'src/Texture.hpp')
-rw-r--r--src/Texture.hpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/Texture.hpp b/src/Texture.hpp
deleted file mode 100644
index cda3e36..0000000
--- a/src/Texture.hpp
+++ /dev/null
@@ -1,14 +0,0 @@
-#pragma once
-
-#include <string>
-
-#include <GL/glew.h>
-
-class Texture {
- Texture(Texture&);
- Texture&operator=(Texture&);
-public:
- GLuint texture;
- Texture(std::string filename, GLenum textureWrapping = GL_CLAMP_TO_BORDER, GLenum textureFiltering = GL_NEAREST);
- ~Texture();
-}; \ No newline at end of file