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