ConsoleShuttleEvent.cs 378 B

123456789101112131415
  1. using Content.Server.Shuttles.Components;
  2. namespace Content.Server.Shuttles.Events;
  3. /// <summary>
  4. /// Raised on a <see cref="ShuttleConsoleComponent"/> when it's trying to get its shuttle console to pilot.
  5. /// </summary>
  6. [ByRefEvent]
  7. public struct ConsoleShuttleEvent
  8. {
  9. /// <summary>
  10. /// Console that we proxy into.
  11. /// </summary>
  12. public EntityUid? Console;
  13. }