diff options
Diffstat (limited to 'code/graphics/Texture.hpp')
-rw-r--r-- | code/graphics/Texture.hpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/code/graphics/Texture.hpp b/code/graphics/Texture.hpp deleted file mode 100644 index 8e3f1af..0000000 --- a/code/graphics/Texture.hpp +++ /dev/null @@ -1,12 +0,0 @@ -#pragma once - -#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 |