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