12 lines
290 B
TypeScript
12 lines
290 B
TypeScript
interface Grid {
|
|
weapons: {
|
|
mainWeapon?: GridWeapon | undefined
|
|
allWeapons: GridArray<GridWeapon>
|
|
}
|
|
summons: {
|
|
mainSummon?: GridSummon | undefined
|
|
friendSummon?: GridSummon | undefined
|
|
allSummons: GridArray<GridSummon>
|
|
}
|
|
characters: GridArray<GridCharacter>
|
|
}
|