From 19b6628549c8b80f23976d9b42f2cd853989422c Mon Sep 17 00:00:00 2001 From: Vegard Storheil Eriksen Date: Tue, 9 Feb 2010 11:38:58 +0100 Subject: Initial commit. --- texture.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 texture.h (limited to 'texture.h') diff --git a/texture.h b/texture.h new file mode 100755 index 0000000..33f6178 --- /dev/null +++ b/texture.h @@ -0,0 +1,13 @@ +#ifndef _TEXTURE_H_ +#define _TEXTURE_H_ +class Texture { + public: + unsigned int tex(); + protected: + void build(); + unsigned char* data; + unsigned int width; + unsigned int height; + unsigned int texture; +}; +#endif // _TEXTURE_H_ -- cgit v1.2.3