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