diff options
Diffstat (limited to 'texture.h')
| -rwxr-xr-x | texture.h | 13 | 
1 files changed, 13 insertions, 0 deletions
| 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_ | 
