assassin-bug/framework/world/system.js

9 lines
162 B
JavaScript
Raw Normal View History

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