GameLogger

This commit is contained in:
2024-03-12 16:53:31 +00:00
parent e7b751c3f1
commit cdfaac773a
4 changed files with 213 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import type { LogType } from "@/defs.js";
export interface IGeneralRecord {
_id: string;
generalID: string;
logType: LogType;
year: number;
month: number;
text: string;
}
+7
View File
@@ -0,0 +1,7 @@
export interface IGlobalRecord {
_id: string;
type: 'history' | 'action';
year: number;
month: number;
text: string;
}
+9
View File
@@ -0,0 +1,9 @@
import type { NationID } from "@/defs.js";
export interface INationRecord {
_id: string;
nationID: NationID;
year: number;
month: number;
text: string;
}