diff --git a/@sammo/game_logic/src/Entity/External/WorldHistory.ts b/@sammo/game_logic/src/Entity/External/WorldHistory.ts new file mode 100644 index 0000000..f7d39f5 --- /dev/null +++ b/@sammo/game_logic/src/Entity/External/WorldHistory.ts @@ -0,0 +1,14 @@ +import type { NationID } from "@/defs.js"; + +//국제 정세 +export interface IWorldHistory { + //MongoDB ID + _id: string; + + //nationID -> year -> month + year: number; + month: number; + nationID?: NationID; + + text: string; +} \ No newline at end of file