12 lines
368 B
TypeScript
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());
|
|
}
|
|
|
|
}
|