blob: 33f61787587dab4b6b5b74c93c4a96f073a2d326 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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_
|