1
0

ConsoleFTLAttemptEvent.cs 312 B

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