2021-07-17 02:37:09 +02:00
|
|
|
|
using System;
|
2021-06-19 13:25:05 +02:00
|
|
|
|
using Content.Server.Atmos.Piping.Components;
|
2021-06-09 22:19:39 +02:00
|
|
|
|
using Content.Server.NodeContainer.NodeGroups;
|
2020-09-04 12:22:33 +02:00
|
|
|
|
using Content.Shared.Atmos;
|
|
|
|
|
|
using Robust.Shared.GameObjects;
|
2020-10-11 15:21:21 +02:00
|
|
|
|
using Robust.Shared.Maths;
|
2020-09-04 12:22:33 +02:00
|
|
|
|
|
2021-06-19 13:25:05 +02:00
|
|
|
|
namespace Content.Server.Atmos.Components
|
2020-09-04 12:22:33 +02:00
|
|
|
|
{
|
|
|
|
|
|
[RegisterComponent]
|
2021-08-02 13:59:41 +02:00
|
|
|
|
[ComponentReference(typeof(IAtmosphereComponent))]
|
2020-09-04 12:22:33 +02:00
|
|
|
|
[Serializable]
|
2022-02-16 00:23:23 -07:00
|
|
|
|
public sealed class UnsimulatedGridAtmosphereComponent : GridAtmosphereComponent
|
2020-09-04 12:22:33 +02:00
|
|
|
|
{
|
2021-06-19 13:25:05 +02:00
|
|
|
|
public override bool Simulated => false;
|
2020-09-04 12:22:33 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|