MiniEngine/include/SDLWrapper/Log.h

14 lines
426 B
C++
Raw Normal View History

2017-06-18 20:37:45 +08:00
#pragma once
#include "include.h"
2018-03-04 15:10:49 +08:00
namespace MiniEngine {
2017-06-18 20:37:45 +08:00
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
};
2018-03-04 15:10:49 +08:00
} /// End of namespace MiniEngine