KF2-SafeMutLoader/SML/Classes/_Logger.uc

21 lines
187 B
Ucode
Raw Normal View History

2023-05-14 01:41:54 +00:00
class _Logger extends Object
abstract;
enum E_LogLevel
{
LL_WrongLevel,
LL_None,
LL_Fatal,
LL_Error,
LL_Warning,
LL_Info,
LL_Debug,
LL_Trace,
LL_All
};
defaultproperties
{
}