6
StarHorizon_Public/Content.Server/Shuttles/Events/ConsoleFTLAttemptEvent.cs
2025-12-18 02:55:17 +03:00

10 lines
312 B
C#

namespace Content.Server.Shuttles.Events;
/// <summary>
/// Raised when a shuttle console is trying to FTL via UI input.
/// </summary>
/// <param name="Cancelled"></param>
/// <param name="Reason"></param>
[ByRefEvent]
public record struct ConsoleFTLAttemptEvent(EntityUid Uid, bool Cancelled, string Reason);