gamedev
Texture.h
1 #ifndef TEXTURE_H
2 #define TEXTURE_H
3 
4 #include <common.h>
5 
6 #define DEBUG
7 
8 namespace Texture{
9  GLuint loadTexture(const char *fileName);
10 }
11 
12 class Texturec{
13 private:
14  unsigned int texState;
15 public:
16  GLuint *image;
17 
18  Texturec(uint amt, ...);
19  Texturec(uint amt,const char **paths);
20  ~Texturec();
21 
22  void bindNext();
23  void bindPrev();
24  void bind(unsigned int);
25  void walk();
26 };
27 
28 #endif //TEXTURE_H
Definition: Texture.h:12
Definition: Texture.cpp:12