aboutsummaryrefslogtreecommitdiffstats
path: root/include/YAGE/texture.hpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-04-06 16:16:59 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-04-06 16:16:59 +0100
commitafe623ba793f9f4c51f94abe6464020d22387c9d (patch)
treeea7c92ce42fb8645146007ab2d1398023efad448 /include/YAGE/texture.hpp
parent905f72775fa91b0a467f3c0847c60cf0f85a6d80 (diff)
downloadYAGE-afe623ba793f9f4c51f94abe6464020d22387c9d.tar.gz
YAGE-afe623ba793f9f4c51f94abe6464020d22387c9d.zip
Improved files
Diffstat (limited to 'include/YAGE/texture.hpp')
-rw-r--r--include/YAGE/texture.hpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/YAGE/texture.hpp b/include/YAGE/texture.hpp
new file mode 100644
index 00000000..c72c80d7
--- /dev/null
+++ b/include/YAGE/texture.hpp
@@ -0,0 +1,18 @@
+#ifndef GL_TEXTURE_HPP
+#define GL_TEXTURE_HPP
+
+#include <GL/glew.h>
+
+namespace yage
+{
+
+struct Texture
+{
+ GLuint id;
+ int width;
+ int height;
+};
+
+} // yage
+
+#endif