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