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