From cf3a20859102247eae1456291ef44fdfeff6a78f Mon Sep 17 00:00:00 2001 From: Hide_D Date: Mon, 11 Mar 2024 12:35:51 +0000 Subject: [PATCH] WorldHistory --- .../game_logic/src/Entity/External/WorldHistory.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 @sammo/game_logic/src/Entity/External/WorldHistory.ts 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