* Add disposal signalers * Sprite changes * Some requested changes * Requested changes + change spelling to be with two l's to be consistent with the remote signaller
15 lines
474 B
C#
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";
|
|
}
|