12 lines
251 B
Plaintext
12 lines
251 B
Plaintext
|
|
typedef void string;
|
|
void Print(const string &in);
|
|
void Log(int level, const string &in);
|
|
void DrawText(const string &in, int x, int y, int fontSize, int color);
|
|
int LOG_TRACE;
|
|
int LOG_DEBUG;
|
|
int LOG_INFO;
|
|
int LOG_WARN;
|
|
int LOG_ERROR;
|
|
int LOG_FATAL;
|