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

18 lines
448 B
C#

using Content.Server.Atmos.Components;
using JetBrains.Annotations;
namespace Content.Server.Atmos.EntitySystems
{
[UsedImplicitly]
public sealed class GasAnalyzerSystem : EntitySystem
{
public override void Update(float frameTime)
{
foreach (var analyzer in EntityManager.EntityQuery<GasAnalyzerComponent>(true))
{
analyzer.Update(frameTime);
}
}
}
}