Files
OldThink/Content.Server/GameObjects/EntitySystems/BatterySystem.cs

19 lines
485 B
C#
Raw Normal View History

using Content.Server.GameObjects.Components.Power;
using JetBrains.Annotations;
using Robust.Shared.GameObjects.Systems;
namespace Content.Server.GameObjects.EntitySystems
{
[UsedImplicitly]
public class BatterySystem : EntitySystem
{
public override void Update(float frameTime)
{
foreach (var comp in ComponentManager.EntityQuery<BatteryComponent>())
{
comp.OnUpdate(frameTime);
}
}
}
}