Files
tbd-station-14/Content.Server/Atmos/Components/IGridAtmosphereComponent.cs

13 lines
292 B
C#

using Robust.Shared.GameObjects;
namespace Content.Server.Atmos.Components
{
public interface IGridAtmosphereComponent : IComponent
{
/// <summary>
/// Whether this atmosphere is simulated or not.
/// </summary>
bool Simulated { get; }
}
}