using Content.Server._DV.Objectives.Systems;
namespace Content.Server._DV.Objectives.Components;
///
/// Tracks which assist objectives are active for a given contract.
/// If this contract is failed all of the assists are failed too.
///
[RegisterComponent, Access(typeof(AssistRandomContractSystem))]
public sealed partial class AssistedContractComponent : Component
{
[DataField]
public HashSet Assisting = new();
}