Files
tbd-station-14/Content.Server/Atmos/Piping/Unary/Components/GasPassiveVentComponent.cs
2022-02-16 18:23:23 +11:00

13 lines
314 B
C#

using Robust.Shared.GameObjects;
using Robust.Shared.Serialization.Manager.Attributes;
namespace Content.Server.Atmos.Piping.Unary.Components
{
[RegisterComponent]
public sealed class GasPassiveVentComponent : Component
{
[DataField("inlet")]
public string InletName = "pipe";
}
}