import type { WarSkillName } from "./defs.js"; export class WarUnitEnv { } export abstract class WarUnit{ hasActivatedSkill(skillName: WarSkillName): boolean { throw new Error("Method not implemented."); } activateSkill(skillName: WarSkillName): void { throw new Error("Method not implemented."); } }