6
StarHorizon_Public/Content.Server/_NF/Salvage/Expeditions/SalvageEliminationExpeditionComponent.cs
2026-01-24 12:49:55 +03:00

18 lines
557 B
C#

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