aboutsummaryrefslogtreecommitdiffstats
path: root/include/Texture.h
blob: 1a32aae9d714740938529abac0ffecf799a98271 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef TEXTURE_H
#define TEXTURE_H

#include <common.h>

#define DEBUG

namespace Texture{
	GLuint loadTexture(const char *fileName);
}

class Texturec{
private:
	unsigned int texState;
public:
	GLuint *image;
	
	Texturec(uint amt, ...);
	~Texturec();
	
	void bindNext();
	void bindPrev();
	void bind(unsigned int);
	void walk();
};

#endif //TEXTURE_H