committed by
GitHub
parent
ea60a81fdf
commit
103bc19508
18
Content.Server/Power/SMES/PowerSmesSystem.cs
Normal file
18
Content.Server/Power/SMES/PowerSmesSystem.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
#nullable enable
|
||||
using JetBrains.Annotations;
|
||||
using Robust.Shared.GameObjects;
|
||||
|
||||
namespace Content.Server.Power.SMES
|
||||
{
|
||||
[UsedImplicitly]
|
||||
internal class PowerSmesSystem : EntitySystem
|
||||
{
|
||||
public override void Update(float frameTime)
|
||||
{
|
||||
foreach (var comp in ComponentManager.EntityQuery<SmesComponent>(true))
|
||||
{
|
||||
comp.OnUpdate();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user