6
StarHorizon_Public/Content.Server/_NF/Salvage/Expeditions/SalvageDestructionExpeditionComponent.cs
2025-08-05 10:00:54 +03:00

18 lines
577 B
C#

using Content.Server.Salvage;
using Content.Shared.Salvage;
namespace Content.Server._NF.Salvage.Expeditions.Structure;
/// <summary>
/// Tracks expedition data for <see cref="SalvageMissionType.Destruction"/>
/// </summary>
[RegisterComponent, Access(typeof(SalvageSystem), typeof(SpawnSalvageMissionJob))]
public sealed partial class SalvageDestructionExpeditionComponent : Component
{
/// <summary>
/// List of structures that need to be destroyed for the mission to be complete.
/// </summary>
[DataField]
public List<EntityUid> Structures = new();
}