1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef UICLASS_H #define UICLASS_H #include <common.h> class UIClass { public: void init(const char *ttf); void setFontSize(unsigned int fs); void putText(float x,float y,const char *s); void handleEvents(); }; #endif // UICLASS_H