Files
heros/assets/script/game/skill/EcsSkillSystem.ts

13 lines
283 B
TypeScript

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