Files
unease/engine/utils/logger.h
2025-02-28 04:43:17 +03:00

17 lines
277 B
C++

#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