6
StarHorizon_Public/Content.Server/_NF/Salvage/Expeditions/ExpeditionSpawnCompleteEvent.cs
2025-08-05 10:00:54 +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;
}
}