import { ecs } from "../../../../extensions/oops-plugin-framework/assets/libs/ecs/ECS"; import { SkillSystem } from "./SkillSystem"; import { SkillAnimationSystem } from "./SkillAnimation"; export class EcsSkillSystem extends ecs.System { constructor() { super(); this.add(new SkillSystem()); this.add(new SkillAnimationSystem()); } }