Delta-v/Content.Server/Atmos/Piping/Unary/Components/GasPassiveVentComponent.cs

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";
}
}