KF2-MSK-GS/MSKGS-SRV/Classes/CfgSrvRank.uc

43 lines
680 B
Ucode
Raw Normal View History

2022-08-16 06:59:16 +00:00
class CfgSrvRank extends Object
config(MSKGS)
abstract;
var public config bool bCustom;
var public config bool bUsesStats;
public static function InitConfig(int Version, int LatestVersion, E_LogLevel LogLevel)
{
`Log_TraceStatic();
switch (Version)
{
case `NO_CONFIG:
ApplyDefault(LogLevel);
default: break;
}
if (LatestVersion != Version)
{
StaticSaveConfig();
}
}
public static function Load(E_LogLevel LogLevel)
{
`Log_TraceStatic();
}
protected static function ApplyDefault(E_LogLevel LogLevel)
{
`Log_TraceStatic();
default.bCustom = false;
default.bUsesStats = true;
}
defaultproperties
{
}