aboutsummaryrefslogtreecommitdiffstats
path: root/include/Texture.h
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2015-11-20 08:50:57 -0500
committerClyne Sullivan <tullivan99@gmail.com>2015-11-20 08:50:57 -0500
commit6be7b11513cdedc17358da314c6e5a5630be00c1 (patch)
tree67ecbdfb7f2f31c87707959404cced383fb3a0b6 /include/Texture.h
parent5598e4d1f52224f2d075dc318868e284b2f20a78 (diff)
background draw re-do
Diffstat (limited to 'include/Texture.h')
-rw-r--r--include/Texture.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/include/Texture.h b/include/Texture.h
index fdb294d..81a743e 100644
--- a/include/Texture.h
+++ b/include/Texture.h
@@ -3,23 +3,22 @@
#include <common.h>
+#define DEBUG
+
namespace Texture{
GLuint loadTexture(const char *fileName);
}
class Texturec{
+private:
+ GLuint *image;
+ int texState;
public:
Texturec(uint amt, ...);
void bindNext();
void bindPrev();
void bind(int);
void walk();
-
- GLuint *image;
- int texState;
-private:
-
-
};
-#endif //TEXTURE_H \ No newline at end of file
+#endif //TEXTURE_H