Separate CCVars into separate files
This commit is contained in:
15
Content.Shared/CCVar/CCVars.Net.cs
Normal file
15
Content.Shared/CCVar/CCVars.Net.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using Robust.Shared.Configuration;
|
||||
|
||||
namespace Content.Shared.CCVar;
|
||||
|
||||
public sealed partial class CCVars
|
||||
{
|
||||
public static readonly CVarDef<float> NetAtmosDebugOverlayTickRate =
|
||||
CVarDef.Create("net.atmosdbgoverlaytickrate", 3.0f);
|
||||
|
||||
public static readonly CVarDef<float> NetGasOverlayTickRate =
|
||||
CVarDef.Create("net.gasoverlaytickrate", 3.0f);
|
||||
|
||||
public static readonly CVarDef<int> GasOverlayThresholds =
|
||||
CVarDef.Create("net.gasoverlaythresholds", 20);
|
||||
}
|
||||
Reference in New Issue
Block a user