伤害系统 + 战斗管理系统

This commit is contained in:
2025-02-03 11:56:33 +08:00
parent cdb8261be9
commit 8f2612bda2
16 changed files with 237 additions and 2 deletions

View File

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