Files
tbd-station-14/Content.Server/Shuttles/Events/ConsoleFTLAttemptEvent.cs
2023-05-16 23:18:37 +10: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);