Require to acknowledge Anti-Cheat impact on PerformanceOverlay

This commit is contained in:
Kamil Trzciński 2022-12-19 12:13:17 +01:00
parent 1da838227d
commit 862bdd2dd3
2 changed files with 73 additions and 4 deletions

View file

@ -40,5 +40,22 @@ namespace PerformanceOverlay
get { return Get<bool>("EnableFullOnPowerControl", false); }
set { Set("EnableFullOnPowerControl", value); }
}
public bool EnableKernelDrivers
{
get { return Get<bool>("EnableKernelDrivers", false); }
set { Set("EnableKernelDrivers", value); }
}
public bool EnableExperimentalFeatures
{
get { return Instance.IsDEBUG; }
}
public bool AckAntiCheat
{
get { return Get<bool>("AckAntiCheat", false); }
set { Set("AckAntiCheat", value); }
}
}
}