15 lines
380 B
C#
15 lines
380 B
C#
using Content.Server.Shuttles.Components;
|
|
|
|
namespace Content.Server.Shuttles.Events;
|
|
|
|
/// <summary>
|
|
/// Raised whenever 2 airlocks dock.
|
|
/// </summary>
|
|
public sealed class DockEvent : EntityEventArgs
|
|
{
|
|
public DockingComponent DockA = default!;
|
|
public DockingComponent DockB = default!;
|
|
|
|
public EntityUid GridAUid = default!;
|
|
public EntityUid GridBUid = default!;
|
|
} |