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

13 lines
307 B
C#

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