using Robust.Shared.Configuration;
namespace Content.Shared.CCVar;
public sealed partial class CCVars
{
///
/// Whether or not the primary account of a bank should be listed
/// in the funding allocation console
///
public static readonly CVarDef AllowPrimaryAccountAllocation =
CVarDef.Create("cargo.allow_primary_account_allocation", false, CVar.REPLICATED);
///
/// Whether or not the primary cut of a bank should be manipulable
/// in the funding allocation console
///
public static readonly CVarDef AllowPrimaryCutAdjustment =
CVarDef.Create("cargo.allow_primary_cut_adjustment", true, CVar.REPLICATED);
///
/// Whether or not the separate lockbox cut is enabled
///
public static readonly CVarDef LockboxCutEnabled =
CVarDef.Create("cargo.enable_lockbox_cut", true, CVar.REPLICATED);
}