Files
core_ng/@sammo/game_logic/src/TroopEntity.ts
T
2024-03-06 16:33:23 +00:00

7 lines
145 B
TypeScript

import type { NationID, TroopID } from "./defs.js";
export interface ITroopEntity {
id: TroopID;
nationID: NationID;
name: string;
}