6
2025-12-18 02:55:17 +03: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
}