mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
17 lines
375 B
C#
17 lines
375 B
C#
using JetBrains.Annotations;
|
|
|
|
namespace Content.Server.Power.SMES
|
|
{
|
|
[UsedImplicitly]
|
|
internal sealed class PowerSmesSystem : EntitySystem
|
|
{
|
|
public override void Update(float frameTime)
|
|
{
|
|
foreach (var comp in EntityManager.EntityQuery<SmesComponent>(true))
|
|
{
|
|
comp.OnUpdate();
|
|
}
|
|
}
|
|
}
|
|
}
|