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