| 123456789 |
- 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);
|