9 lines
291 B
TypeScript
9 lines
291 B
TypeScript
import { ecs } from "../../../../../../extensions/oops-plugin-framework/assets/libs/ecs/ECS";
|
|
import { BattleMoveSystem } from "./BattleMoveSystem";
|
|
export class EcsPositionSystem extends ecs.System {
|
|
constructor() {
|
|
super();
|
|
// this.add(new BattleMoveSystem());
|
|
}
|
|
}
|