Files
OldThink/Content.Server/Power/SMES/PowerSmesSystem.cs

18 lines
408 B
C#
Raw Normal View History

using JetBrains.Annotations;
using Robust.Shared.GameObjects;
namespace Content.Server.Power.SMES
{
[UsedImplicitly]
internal sealed class PowerSmesSystem : EntitySystem
{
public override void Update(float frameTime)
{
foreach (var comp in EntityManager.EntityQuery<SmesComponent>(true))
{
comp.OnUpdate();
}
}
}
}