* Fix namespaces and optimize imports * Cleanup fixes * Merge conflict fixes * Merge conflict fixes * Merge conflict fixes
17 lines
449 B
C#
17 lines
449 B
C#
using Content.Server.GameObjects.Components.Atmos;
|
|
using Robust.Shared.GameObjects.Systems;
|
|
|
|
namespace Content.Server.GameObjects.EntitySystems
|
|
{
|
|
public class GasAnalyzerSystem : EntitySystem
|
|
{
|
|
public override void Update(float frameTime)
|
|
{
|
|
foreach (var analyzer in ComponentManager.EntityQuery<GasAnalyzerComponent>())
|
|
{
|
|
analyzer.Update(frameTime);
|
|
}
|
|
}
|
|
}
|
|
}
|