mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-21 23:48:15 +03:00
17 lines
456 B
C#
17 lines
456 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Content.Shared.Atmos;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Map;
|
|
using Robust.Shared.Maths;
|
|
|
|
namespace Content.Server.Atmos.Components
|
|
{
|
|
[RegisterComponent]
|
|
[ComponentReference(typeof(IGridAtmosphereComponent))]
|
|
public class SpaceGridAtmosphereComponent : UnsimulatedGridAtmosphereComponent
|
|
{
|
|
public override string Name => "SpaceGridAtmosphere";
|
|
}
|
|
}
|