타입 정의 상세
This commit is contained in:
@@ -1,13 +1,15 @@
|
||||
import type { WarSkillName } from "./defs.js";
|
||||
|
||||
export class WarUnitEnv {
|
||||
|
||||
}
|
||||
|
||||
export abstract class WarUnit{
|
||||
hasActivatedSkill(skillName: string): boolean {
|
||||
hasActivatedSkill(skillName: WarSkillName): boolean {
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
|
||||
activateSkill(skillName: string): void {
|
||||
activateSkill(skillName: WarSkillName): void {
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user