mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
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;
|
|
}
|
|
}
|