using Content.Server.Antag;
using Content.Shared.Objectives.Components;
using Robust.Shared.Prototypes;
namespace Content.Server.Antag.Components;
///
/// Gives antags selected by this rule a fixed list of objectives.
///
[RegisterComponent, Access(typeof(AntagObjectivesSystem))]
public sealed partial class AntagObjectivesComponent : Component
{
///
/// List of static objectives to give.
///
[DataField(required: true)]
public List> Objectives = new();
}