Re-organize all projects (#4166)
This commit is contained in:
18
Content.Server/Pointing/EntitySystems/RoguePointingSystem.cs
Normal file
18
Content.Server/Pointing/EntitySystems/RoguePointingSystem.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using Content.Server.Pointing.Components;
|
||||
using JetBrains.Annotations;
|
||||
using Robust.Shared.GameObjects;
|
||||
|
||||
namespace Content.Server.Pointing.EntitySystems
|
||||
{
|
||||
[UsedImplicitly]
|
||||
internal sealed class RoguePointingSystem : EntitySystem
|
||||
{
|
||||
public override void Update(float frameTime)
|
||||
{
|
||||
foreach (var component in ComponentManager.EntityQuery<RoguePointingArrowComponent>(true))
|
||||
{
|
||||
component.Update(frameTime);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user