Files
oops-framework/assets/script/ecs/RootSystem.ts
2021-07-03 16:38:47 +08:00

15 lines
423 B
TypeScript

import { ecs } from "../core/libs/ECS";
export class RootSystem extends ecs.RootSystem {
constructor() {
super();
// this.add(new AutoCreateEnemySystem());
// this.add(new AutoMoveToSystem());
// this.add(new EcsMgobeSystem());
// this.add(new EcsInputSystem());
// this.add(new EcsRotationSystem());
// this.add(new EcsPositionSystem());
}
}