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