aboutsummaryrefslogtreecommitdiffstats
path: root/include/ui.h
blob: 2077837d8317b929e7405d63d7c323e71bec6c4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef UI_H
#define UI_H

#include <common.h>
#include <cstdarg>

namespace ui {
	void initFonts(void);
	void setFontFace(const char *ttf);
	void setFontSize(unsigned int size);
	
	void putString(const float x,const float y,const char *s);
	void putText(const float x,const float y,const char *str,...);
	
	void handleEvents(void);
}

#endif // UI_H