From 49411238b04f3510d18617d1498622cf199c617d Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 8 Dec 2015 08:35:21 -0500 Subject: documentation, dialog box borders --- doc/html/Texture_8h_source.html | 130 ---------------------------------------- 1 file changed, 130 deletions(-) delete mode 100644 doc/html/Texture_8h_source.html (limited to 'doc/html/Texture_8h_source.html') diff --git a/doc/html/Texture_8h_source.html b/doc/html/Texture_8h_source.html deleted file mode 100644 index 67dfdc3..0000000 --- a/doc/html/Texture_8h_source.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - -gamedev: include/Texture.h Source File - - - - - - - - - - -
-
- - - - - - -
-
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
-
- - - - -- cgit v1.2.3