mirror of
https://gitee.com/dgflash/oops-framework.git
synced 2026-05-14 14:21:29 +08:00
15 lines
423 B
TypeScript
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());
|
|
}
|
|
}
|