mirror of
https://github.com/Kiritow/MiniEngine.git
synced 2024-03-22 13:11:22 +08:00
14 lines
415 B
C
14 lines
415 B
C
|
#pragma once
|
||
|
#include "include.h"
|
||
|
#include "begin_code.h"
|
||
|
class LogSystem
|
||
|
{
|
||
|
static void v(const char* fmt,...);/// Verbose
|
||
|
static void d(const char* fmt,...);/// Debug
|
||
|
static void i(const char* fmt,...);/// Information
|
||
|
static void w(const char* fmt,...);/// Warning
|
||
|
static void e(const char* fmt,...);/// Error
|
||
|
static void critical(const char* fmt,...);/// Critical
|
||
|
};
|
||
|
#include "end_code.h"
|