An Array of: arrays-of-arrays

BlitzMax Forums/BlitzMax Programming/An Array of: arrays-of-arrays

Curtastic(Posted 2005) [#1]
If anyone could look through this example program and see what I want to do, that would be helpful.

Each Area is a 2D-array of 2D-arrays. I want to put theses Areas into an array. That would mean an array of arrays of arrays. But blitz doesn't seem to allow this, and I don't know what to do.




Curtastic(Posted 2005) [#2]
OMG I just realized that this works:

Global Area[,][,][amount]

Allright, you just have to declare it backwards...
but you access it like this:

area[id][x,y]=some3x3array

Is this backwards to anyone else?