Initial sources
This commit is contained in:
16
engine/utils/logger.h
Normal file
16
engine/utils/logger.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#ifndef LOGGER_H
|
||||
#define LOGGER_H
|
||||
|
||||
class Logger
|
||||
{
|
||||
public:
|
||||
static void Init();
|
||||
static void Shutdown();
|
||||
static void LogPrint(const char* msg, ...);
|
||||
static void Error(const char* msg, ...);
|
||||
};
|
||||
|
||||
#define Msg Logger::LogPrint
|
||||
#define LogMsg Logger::LogPrint
|
||||
|
||||
#endif // !LOGGER_H
|
||||
Reference in New Issue
Block a user