18 lines
406 B
Plaintext
18 lines
406 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_WARNING;
|
|
int LOG_ERROR;
|
|
int LOG_FATAL;
|
|
|
|
namespace Toast {
|
|
void Info(const string&in);
|
|
void Warning(const string&in);
|
|
void Error(const string&in);
|
|
void Success(const string&in);
|
|
}
|