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

18 lines
595 B
C#

namespace Content.Server._NF.Salvage.Expeditions;
/// <summary>
/// This event is raised when an expedition spawn job has completed (either successfully or in failure), and informs whether the job was successful or not.
/// </summary>
public sealed class ExpeditionSpawnCompleteEvent : EntityEventArgs
{
public EntityUid Station;
public bool Success;
public ushort MissionIndex;
public ExpeditionSpawnCompleteEvent(EntityUid station, bool success, ushort missionIndex)
{
Station = station;
Success = success;
MissionIndex = missionIndex;
}
}