Files
crystall-punk-14/Content.Server/Atmos/Components/SpaceAtmosphereComponent.cs

10 lines
263 B
C#
Raw Normal View History

2022-05-13 00:59:03 -07:00
namespace Content.Server.Atmos.Components
{
[RegisterComponent]
[ComponentReference(typeof(IAtmosphereComponent))]
public sealed class SpaceAtmosphereComponent : Component, IAtmosphereComponent
{
public bool Simulated => false;
}
}