using Robust.Shared.GameObjects.Systems;
namespace Content.Server.GameObjects.EntitySystems
{
class DoorSystem : EntitySystem
{
///
public override void Update(float frameTime)
{
foreach (var comp in ComponentManager.EntityQuery())
{
comp.OnUpdate(frameTime);
}
}
}
}