KF2-YetAnotherScoreboard/YAS/Classes/_Logger.uc
2022-09-03 20:26:40 +03:00

21 lines
208 B
Ucode

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
{
}