using Robust.Shared.Configuration;
namespace Content.Shared.CCVar;
public sealed partial class CCVars
{
///
/// Load range for biomes. Set this higher than PVS so server can have some time to load in before the client arrives.
///
public static readonly CVarDef BiomeLoadRange =
CVarDef.Create("biome.load_range", 20f, CVar.SERVERONLY);
///
/// Time allocation (ms) for how long biomes are allowed to load.
///
public static readonly CVarDef BiomeLoadTime =
CVarDef.Create("biome.load_time", 0.03f, CVar.SERVERONLY);
}