Files
RobustToolbox/Robust.Client/GameObjects/EntitySystems/AppearanceTestSystem.cs
metalgearsloth a274b8dfc2 EntityQuery no longer yields paused by default (#1521)
* Change EntityQuery to not get paused by default

* GetAllComponents

* Fix shell commands

Co-authored-by: Metal Gear Sloth <metalgearsloth@gmail.com>
2021-02-04 00:20:31 +11:00

16 lines
446 B
C#

using Robust.Shared.GameObjects.Systems;
namespace Robust.Client.GameObjects.EntitySystems
{
class AppearanceTestSystem : EntitySystem
{
public override void Update(float frameTime)
{
foreach (var appearanceTestComponent in EntityManager.ComponentManager.EntityQuery<AppearanceTestComponent>(true))
{
appearanceTestComponent.OnUpdate(frameTime);
}
}
}
}