2021-07-17 02:37:09 +02:00
|
|
|
|
using System.Collections.Generic;
|
2020-09-19 15:02:30 +02:00
|
|
|
|
using System.Linq;
|
2021-06-23 11:35:30 +02:00
|
|
|
|
using Content.Shared.Atmos;
|
2021-04-13 13:17:10 +02:00
|
|
|
|
using Robust.Shared.GameObjects;
|
2020-09-19 15:02:30 +02:00
|
|
|
|
using Robust.Shared.Map;
|
2020-10-11 15:21:21 +02:00
|
|
|
|
using Robust.Shared.Maths;
|
2020-09-19 15:02:30 +02:00
|
|
|
|
|
2021-06-19 13:25:05 +02:00
|
|
|
|
namespace Content.Server.Atmos.Components
|
2020-09-19 15:02:30 +02:00
|
|
|
|
{
|
2021-04-13 13:17:10 +02:00
|
|
|
|
[RegisterComponent]
|
|
|
|
|
|
[ComponentReference(typeof(IGridAtmosphereComponent))]
|
2020-09-19 15:02:30 +02:00
|
|
|
|
public class SpaceGridAtmosphereComponent : UnsimulatedGridAtmosphereComponent
|
|
|
|
|
|
{
|
|
|
|
|
|
public override string Name => "SpaceGridAtmosphere";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|