diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-16 11:33:02 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-16 11:33:02 -0400 |
commit | d7efa99f03f9d0eb5d84ed42249f227f13471079 (patch) | |
tree | 1385c96106d7fbb64a6081529255bcc1d2d48664 /include/UIClass.h | |
parent | ba4b5bd76ae9b1fa3e3c862d8672e35b02e1664c (diff) |
shitty bug fixes
Diffstat (limited to 'include/UIClass.h')
-rw-r--r-- | include/UIClass.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/include/UIClass.h b/include/UIClass.h index e6f4825..745dec3 100644 --- a/include/UIClass.h +++ b/include/UIClass.h @@ -5,17 +5,14 @@ #include <cstdarg>
#include <cstdio>
-class UIClass {
-private:
- unsigned int fontSize;
-public:
+namespace ui {
+ extern int mousex,mousey;
void init(const char *ttf);
void setFontSize(unsigned int fs);
void putText(const float x,const float y,const char *s,...);
void putString(const float x,const float y,const char *s);
void msgBox(const char *str,...);
void handleEvents();
- int mousex, mousey;
-};
+}
#endif // UICLASS_H
|