project-bo4 ff71bec3a3 Functionality Improvements
+ Added 'keycatchers' as an standalone component
+ Improvement to logger with output division
+ Improvements to game console
2024-07-28 12:26:23 +03:30

17 lines
260 B
C++

#pragma once
namespace logger
{
enum type
{
LOG_TYPE_DEBUG = 0,
LOG_TYPE_INFO = 1,
LOG_TYPE_WARN = 2,
LOG_TYPE_ERROR = 3,
LOG_TYPE_CONSOLE = 4
};
void write(const int type, std::string str);
void write(const int type, const char* fmt, ...);
}