aboutsummaryrefslogtreecommitdiffstats
path: root/include/UIClass.h
blob: e61bf14117c35da47f04c03cbf9b6de2b98f18b8 (plain)
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