Chellaris Data Types
This commit is contained in:
parent
b209473ac4
commit
babc937686
1 changed files with 15 additions and 0 deletions
15
src/lib/types/chellaris.ts
Normal file
15
src/lib/types/chellaris.ts
Normal 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,
|
||||
}
|
Reference in a new issue