Delta-v/Content.Server/Atmos/Components/UnsimulatedGridAtmosphereCo...

11 lines
293 B
C#

namespace Content.Server.Atmos.Components
{
[RegisterComponent]
[ComponentReference(typeof(IAtmosphereComponent))]
[Serializable]
public sealed class UnsimulatedGridAtmosphereComponent : GridAtmosphereComponent
{
public override bool Simulated => false;
}
}