mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-01-05 19:19:43 -06:00
18 lines
294 B
C++
18 lines
294 B
C++
#pragma once
|
|
|
|
#include <source_location>
|
|
|
|
namespace os::logger::detail
|
|
{
|
|
enum class ELogType
|
|
{
|
|
None,
|
|
Utility,
|
|
Warning,
|
|
Error
|
|
};
|
|
|
|
void Init();
|
|
void Log(const std::string_view str, ELogType type = ELogType::None, const char* func = nullptr);
|
|
}
|