2025-07-17 13:52:06 +03:00

16 lines
270 B
C++

#pragma once
#include <string>
enum LogType {
Info,
Warning,
Error,
None
};
class Logger {
public:
// Using std::string for ease of use, overhead is practically non-existent
static void Log(const char* text, LogType = LogType::Info);
static void Watermark();
};