Files
assassin-bug/framework/ecs/system.js
2022-11-26 02:22:02 +01:00

11 lines
202 B
JavaScript

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