I have a struct array like this:
SmallArray[0].X , SmallArray[0].Y and
SmallArray[1].X , SmallArray[1].Y and
etc...
Now I have to insert this array to a cell of another array, for example:
BigArray[0] = SmallArray //Not a single cell but the whole small array
As if the cell point to the small array so I can access to the small array like this:
let variable = BigArray[0].SmallArray[0].X
let variable2 = BigArray[0].SmallArray[0].Y
and also
let variable3 = BigArray[0].SmallArray[1].X
let variable4 = BigArray[0].SmallArray[1].Y
etc...