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