2020-08-19 15:50:06 +02:00
|
|
|
using Robust.Shared.Audio;
|
|
|
|
|
|
2025-04-19 16:20:40 +10:00
|
|
|
namespace Content.Server.Disposal.Tube
|
2020-08-19 15:50:06 +02:00
|
|
|
{
|
|
|
|
|
[RegisterComponent]
|
2023-04-06 20:20:50 -07:00
|
|
|
[Access(typeof(DisposalTubeSystem))]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class DisposalRouterComponent : DisposalJunctionComponent
|
2020-08-19 15:50:06 +02:00
|
|
|
{
|
2022-09-13 21:14:21 +02:00
|
|
|
[DataField("tags")]
|
|
|
|
|
public HashSet<string> Tags = new();
|
2020-08-19 15:50:06 +02:00
|
|
|
|
2023-06-21 07:31:19 -07:00
|
|
|
[DataField("clickSound")]
|
|
|
|
|
public SoundSpecifier ClickSound = new SoundPathSpecifier("/Audio/Machines/machine_switch.ogg");
|
2020-08-19 15:50:06 +02:00
|
|
|
}
|
|
|
|
|
}
|