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

12 lines
297 B
C#
Raw Normal View History

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