che_필살 예시 구현

This commit is contained in:
2023-09-24 05:43:06 +00:00
parent 905b401aab
commit 45f14f0b72
11 changed files with 220 additions and 27 deletions
+6
View File
@@ -3,5 +3,11 @@ export class WarUnitEnv {
}
export abstract class WarUnit{
hasActivatedSkill(skillName: string): boolean {
throw new Error("Method not implemented.");
}
activateSkill(skillName: string): void {
throw new Error("Method not implemented.");
}
}