From 267bebfc227c94f543a39e2aa75fb101bc06932e Mon Sep 17 00:00:00 2001 From: Vegard Storheil Eriksen Date: Fri, 21 May 2010 19:24:51 +0200 Subject: Moved engine-sources to seperate subdirectory. --- engine/texture.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 engine/texture.h (limited to 'engine/texture.h') diff --git a/engine/texture.h b/engine/texture.h new file mode 100644 index 0000000..14e500f --- /dev/null +++ b/engine/texture.h @@ -0,0 +1,14 @@ +#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 byte_per_pixel; + unsigned int texture; +}; +#endif // _TEXTURE_H_ -- cgit v1.2.3