Files
tbd-station-14/Content.Server/Atmos/Components/IAtmosphereComponent.cs
2022-05-13 17:59:03 +10:00

11 lines
254 B
C#

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