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

10 lines
263 B
C#

namespace Content.Server.Atmos.Components
{
[RegisterComponent]
[ComponentReference(typeof(IAtmosphereComponent))]
public sealed class SpaceAtmosphereComponent : Component, IAtmosphereComponent
{
public bool Simulated => false;
}
}