From 78bd3d738a4b1cec8bd4504a36120f5795029e8b Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Mon, 14 Sep 2015 16:50:45 -0400 Subject: fixes --- include/UIClass.h | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'include') diff --git a/include/UIClass.h b/include/UIClass.h index e61bf14..9aafbd3 100644 --- a/include/UIClass.h +++ b/include/UIClass.h @@ -2,13 +2,18 @@ #define UICLASS_H #include +#include +#include class UIClass { - public: - void init(const char *ttf); - void setFontSize(unsigned int fs); - void putText(float x,float y,const char *s); - void handleEvents(); +private: + unsigned int fontSize; +public: + 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 handleEvents(); }; #endif // UICLASS_H -- cgit v1.2.3