using Content.Server.Objectives.Systems; using Content.Shared.DeltaV.Recruiter; namespace Content.Server.Objectives.Components; /// /// Objective condition that requires the recruiter's pen to be used by a number of people to sign paper. /// Requires to function. /// [RegisterComponent, Access(typeof(RecruitingConditionSystem), typeof(SharedRecruiterPenSystem))] public sealed partial class RecruitingConditionComponent : Component { [DataField] public int Recruited; }