#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 LogMsg Logger::LogPrint #endif // !LOGGER_H