assassin-bug/framework/ecs/system.js

11 lines
202 B
JavaScript
Raw Permalink Normal View History

2022-11-26 01:22:02 +00:00
export class System {
constructor(executor) {
this.executor = executor;
}
execute(world) {
if (this.executor) {
this.executor(world);
}
}
}