13 lines
350 B
C#
13 lines
350 B
C#
using Content.Shared.Disposal.Unit;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.Disposal.Tube;
|
|
|
|
[RegisterComponent]
|
|
[Access(typeof(SharedDisposalTubeSystem), typeof(SharedDisposalUnitSystem))]
|
|
public sealed partial class DisposalEntryComponent : Component
|
|
{
|
|
[DataField]
|
|
public EntProtoId HolderPrototypeId = "DisposalHolder";
|
|
}
|