Files
heros/assets/script/game/skill/EcsSkillSystem.ts
2025-02-02 14:48:06 +08:00

12 lines
368 B
TypeScript

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());
}
}