GameLogger
This commit is contained in:
@@ -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;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
export interface IGlobalRecord {
|
||||
_id: string;
|
||||
type: 'history' | 'action';
|
||||
year: number;
|
||||
month: number;
|
||||
text: string;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
import type { NationID } from "@/defs.js";
|
||||
|
||||
export interface INationRecord {
|
||||
_id: string;
|
||||
nationID: NationID;
|
||||
year: number;
|
||||
month: number;
|
||||
text: string;
|
||||
}
|
||||
Reference in New Issue
Block a user