1
0

ShuttleConsoleFTLStartEvent.cs 239 B

12345678910
  1. namespace Content.Server.Shuttles.Events;
  2. /// <summary>
  3. /// Raised when shuttle console approved FTL
  4. /// </summary>
  5. [ByRefEvent]
  6. public record struct ShuttleConsoleFTLTravelStartEvent(EntityUid Uid)
  7. {
  8. public EntityUid Uid = Uid;
  9. }