vue: NPCControl(WIP) 메인 기능 동작

This commit is contained in:
2021-09-08 02:48:46 +09:00
parent c4a6735d60
commit 260cee9b38
8 changed files with 426 additions and 40 deletions
+13
View File
@@ -130,4 +130,17 @@ export type NationPolicy = {
minNPCRecruitCityPopulation: number,
safeRecruitCityPopulationRatio: number,
properWarTrainAtmos: number,
}
export declare type Colors = 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light';
export type IDItem<T> = {
id: T;
};
export type ToastType = {
title?: string,
content?: string,
type?: Colors,
delay?: number,
}