DockEvent.cs 380 B

123456789101112131415
  1. using Content.Server.Shuttles.Components;
  2. namespace Content.Server.Shuttles.Events;
  3. /// <summary>
  4. /// Raised whenever 2 airlocks dock.
  5. /// </summary>
  6. public sealed class DockEvent : EntityEventArgs
  7. {
  8. public DockingComponent DockA = default!;
  9. public DockingComponent DockB = default!;
  10. public EntityUid GridAUid = default!;
  11. public EntityUid GridBUid = default!;
  12. }