6
StarHorizon_Public/Content.Server/Disposal/Tube/DisposalSignallerComponent.cs
2026-01-24 12:49:55 +03:00

15 lines
474 B
C#

using Content.Shared.DeviceLinking;
using Robust.Shared.Prototypes;
namespace Content.Server.Disposal.Tube;
/// <summary>
/// Disposal pipes with this component can be linked with devices to send a signal every time an item goes through the pipe
/// </summary>
[RegisterComponent, Access(typeof(DisposalSignallerSystem))]
public sealed partial class DisposalSignallerComponent : Component
{
[DataField]
public ProtoId<SourcePortPrototype> Port = "ItemDetected";
}