export class System {
constructor(executor) { }
execute(world) {
if (this.executor) {
this.executor(world);
}