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