2021-08-02 13:59:41 +02:00
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Atmos.Components
|
|
|
|
|
|
{
|
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
|
[ComponentReference(typeof(IAtmosphereComponent))]
|
2022-02-16 00:23:23 -07:00
|
|
|
|
public sealed class SpaceAtmosphereComponent : Component, IAtmosphereComponent
|
2021-08-02 13:59:41 +02:00
|
|
|
|
{
|
|
|
|
|
|
public bool Simulated => false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|