Stores a collection of systems which are in order.
function helloWorld(){ console.log("hello world")}const schedule = new Schedule()//Add the system to the scheduleschedule.add(helloWorld)//runs systems in the scheduleschedule.run() Copy
function helloWorld(){ console.log("hello world")}const schedule = new Schedule()//Add the system to the scheduleschedule.add(helloWorld)//runs systems in the scheduleschedule.run()
Stores a collection of systems which are in order.
Example