DockingSignalControlComponent.cs 387 B

1234567891011121314
  1. using Content.Shared.DeviceLinking;
  2. using Robust.Shared.Prototypes;
  3. namespace Content.Server.Shuttles.Components;
  4. [RegisterComponent]
  5. public sealed partial class DockingSignalControlComponent : Component
  6. {
  7. /// <summary>
  8. /// Output port that is high while docked.
  9. /// </summary>
  10. [DataField]
  11. public ProtoId<SourcePortPrototype> DockStatusSignalPort = "DockStatus";
  12. }