using Content.Shared.Customization.Systems;
using Content.Shared.Roles;
using Robust.Shared.Prototypes;
namespace Content.Shared.Customization;
///
/// Collection of job, antag, and ghost-role job requirements for per-server requirement overrides.
///
[Prototype]
public sealed partial class CharacterRequirementOverridePrototype : IPrototype
{
[ViewVariables]
[IdDataField]
public string ID { get; private set; } = default!;
[DataField]
public Dictionary, List> Jobs = new ();
[DataField]
public Dictionary, List> Antags = new ();
}