Initial sources

This commit is contained in:
2025-02-28 04:43:17 +03:00
commit d9437c8619
34 changed files with 18207 additions and 0 deletions

16
engine/utils/logger.h Normal file
View 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