namespace Content.Server.Objectives.Components;
///
/// Sets a target objective to a specific target when receiving it.
/// The objective entity needs to have .
/// This component needs to be added to entity receiving the objective.
///
[RegisterComponent]
public sealed partial class TargetOverrideComponent : Component
{
///
/// The entity that should be targeted.
///
[DataField]
public EntityUid? Target;
}