aboutsummaryrefslogtreecommitdiffstats
path: root/include/UIClass.h
diff options
context:
space:
mode:
authorAndy Belle-Isle <abelleisle@roadrunner.com>2015-09-16 18:00:38 -0400
committerAndy Belle-Isle <abelleisle@roadrunner.com>2015-09-16 18:00:38 -0400
commit0dc897fe78c41d0420105f3a1ce02b31fcf5d376 (patch)
treecbb87581066104556ab76790de3eeddd0c13e1ed /include/UIClass.h
parent76ae330e93cfdc09826beee41970772cbd0486ea (diff)
Fixed Conflicts
Had to remove -Wextra because it didn't allow for int argc, char** argv and SDL requires those in the main function. Also removed glActiveTexture() because it wasn't declared, currently everything works fine without it, but I'll find a way to fix it soon, but for now it works.
Diffstat (limited to 'include/UIClass.h')
-rw-r--r--include/UIClass.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/UIClass.h b/include/UIClass.h
index 867044e..ed07551 100644
--- a/include/UIClass.h
+++ b/include/UIClass.h
@@ -7,6 +7,7 @@
namespace ui {
extern int mousex,mousey;
+ extern bool debug;
void init(const char *ttf);
void setFontSize(unsigned int fs);
void putText(const float x,const float y,const char *s,...);