ReservedTurn

This commit is contained in:
2024-03-11 14:28:13 +00:00
parent 2266cad0f8
commit e6f6798f34
7 changed files with 26 additions and 33 deletions
+7 -1
View File
@@ -221,4 +221,10 @@ export interface WarSkillNameBase {
회피불가: unknown;
회피: unknown;
}
export type WarSkillName = keyof WarSkillNameBase;
export type WarSkillName = keyof WarSkillNameBase;
export interface ReservedTurn {
action: string;
arg: Record<string, unknown>;
brief: string;
}