#ifndef UICLASS_H #define UICLASS_H #include #include #include class UIClass { 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(); float mousex, mousey; }; #endif // UICLASS_H