blob: 867044edc75df243fecfe653ad2f79a3e6a9dcdc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef UICLASS_H
#define UICLASS_H
#include <common.h>
#include <cstdarg>
#include <cstdio>
namespace ui {
extern int mousex,mousey;
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 msgBox(const char *str,...);
void handleEvents();
};
#endif // UICLASS_H
|