export function FlattenZoneArray(tiles: string[][]) { const normalArray = [] for (const row of tiles) { normalArray.push(...row) } return normalArray }