伤害系统有问题,打算放弃

This commit is contained in:
2025-02-03 15:03:45 +08:00
parent 8f2612bda2
commit 060046a6a6
18 changed files with 549 additions and 112 deletions

View File

@@ -1,12 +1,16 @@
import { ecs } from "../../../../extensions/oops-plugin-framework/assets/libs/ecs/ECS";
import { HeroSkillSystem } from "./HeroSkillSystem";
import { DamageSystem } from "../damage/DamageSystem";
import { BattleManagerSystem } from "../battle/BattleManager";
import { BattleEndSystem } from "../battle/BattleEndSystem";
export class EcsSkillSystem extends ecs.System {
constructor() {
super();
this.add(new HeroSkillSystem());
this.add(new DamageSystem());
this.add(new BattleManagerSystem());
this.add(new BattleEndSystem());
}