Files
tbd-station-14/Content.Server/Atmos/Components/IAtmosphereComponent.cs
Vera Aguilera Puerto 009087863f AtmosDevices can optionally process in space. (#4405)
Refactors some misc atmos things, too.
2021-08-02 21:59:41 +10:00

13 lines
288 B
C#

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