6
2026-01-13 18:31:02 +02:00

18 lines
426 B
C#

using Robust.Shared.Configuration;
namespace Content.Shared._Goobstation.CCVar;
[CVarDefs]
public sealed partial class GoobCVars
{
#region Mechs
/// <summary>
/// Whether or not players can use mech guns outside of mechs.
/// </summary>
public static readonly CVarDef<bool> MechGunOutsideMech =
CVarDef.Create("mech.gun_outside_mech", true, CVar.SERVER | CVar.REPLICATED);
#endregion
}