Files
15 lines
387 B
C#
15 lines
387 B
C#
using Content.Shared.DeviceLinking;
|
|||
using Robust.Shared.Prototypes;
|
|||
|
|||
namespace Content.Server.Shuttles.Components;
|
|||
|
|||
[RegisterComponent]
|
|||
public sealed partial class DockingSignalControlComponent : Component
|
|||
{
|
|||
/// <summary>
|
|||
/// Output port that is high while docked.
|
|||
/// </summary>
|
|||
[DataField]
|
|||
public ProtoId<SourcePortPrototype> DockStatusSignalPort = "DockStatus";
|
|||
}
|