Files
tbd-station-14/Content.Server/Chemistry/EntitySystems/SolutionAreaEffectSystem.cs
2021-06-09 22:19:39 +02:00

21 lines
558 B
C#

#nullable enable
using System.Linq;
using Content.Server.Chemistry.Components;
using JetBrains.Annotations;
using Robust.Shared.GameObjects;
namespace Content.Server.Chemistry.EntitySystems
{
[UsedImplicitly]
public class SolutionAreaEffectSystem : EntitySystem
{
public override void Update(float frameTime)
{
foreach (var inception in ComponentManager.EntityQuery<SolutionAreaEffectInceptionComponent>().ToArray())
{
inception.InceptionUpdate(frameTime);
}
}
}
}