9 lines
162 B
JavaScript
9 lines
162 B
JavaScript
|
export class System {
|
||
|
constructor(executor) { }
|
||
|
execute(world) {
|
||
|
if (this.executor) {
|
||
|
this.executor(world);
|
||
|
}
|
||
|
}
|
||
|
}
|