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

12 lines
290 B
C#

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