18 lines
426 B
C#
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
|
|
}
|