using Content.Server.Salvage;
using Content.Shared.Salvage;
namespace Content.Server._NF.Salvage.Expeditions;
///
/// 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]
public List Megafauna = new();
}