Files
tbd-station-14/Content.Server/Atmos/Components/UnsimulatedGridAtmosphereComponent.cs
2022-05-13 17:59:03 +10:00

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