11 lines
293 B
C#
11 lines
293 B
C#
namespace Content.Server.Atmos.Components
|
|
{
|
|
[RegisterComponent]
|
|
[ComponentReference(typeof(IAtmosphereComponent))]
|
|
[Serializable]
|
|
public sealed class UnsimulatedGridAtmosphereComponent : GridAtmosphereComponent
|
|
{
|
|
public override bool Simulated => false;
|
|
}
|
|
}
|