14 lines
349 B
C#
14 lines
349 B
C#
|
|
using Robust.Shared.GameObjects;
|
|||
|
|
|
|||
|
|
namespace Content.Server.Atmos.Components
|
|||
|
|
{
|
|||
|
|
[RegisterComponent]
|
|||
|
|
[ComponentReference(typeof(IAtmosphereComponent))]
|
|||
|
|
public class SpaceAtmosphereComponent : Component, IAtmosphereComponent
|
|||
|
|
{
|
|||
|
|
public override string Name => "SpaceAtmosphere";
|
|||
|
|
|
|||
|
|
public bool Simulated => false;
|
|||
|
|
}
|
|||
|
|
}
|