Classes which implement/extend Executor takes a schedule and executes the systems on it using a world.
Executor
class SomeExecutor extends Executor {}const world = new World()const schedule = new Schedule()const executor = new SomeExecutor()executor.start(world, schedule) Copy
class SomeExecutor extends Executor {}const world = new World()const schedule = new Schedule()const executor = new SomeExecutor()executor.start(world, schedule)
Classes which implement/extend
Executor
takes a schedule and executes the systems on it using a world.See
Example