Chellaris Data Types

This commit is contained in:
Neshura 2023-08-13 03:24:20 +02:00
parent b209473ac4
commit babc937686
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C

View file

@ -0,0 +1,15 @@
export type ChellarisInfo = {
games: Map<string, ChellarisGame>,
ethics: Array<null>, // TODO implement
portraits: Array<null>, // TODO implement
}
export type ChellarisGame = {
name: string,
groups: Map<string, ChellarisGameGroup>,
empires: Array<null>, // TODO implement
}
export type ChellarisGameGroup = {
name: string,
}