using Content.Server.GameObjects.Components.Interactable; using JetBrains.Annotations; using Robust.Shared.GameObjects.Systems; namespace Content.Server.Interfaces.GameObjects.Components.Interaction { [UsedImplicitly] internal sealed class HandHeldLightSystem : EntitySystem { public override void Update(float frameTime) { foreach (var comp in ComponentManager.EntityQuery()) { comp.OnUpdate(frameTime); } } } }