03-06-2006, 04:29 PM
Make them dynamic by changing anything like this:
Tile(0 to x, 0 to x) as ...
to
Tile() as ...
then redim it somewhere, perhaps the load map or something like that.
Redim Preserve Map(x).Tile(0 to x, 0 to x)
In client, you don't need Preserve.
Make since?
Tile(0 to x, 0 to x) as ...
to
Tile() as ...
then redim it somewhere, perhaps the load map or something like that.
Redim Preserve Map(x).Tile(0 to x, 0 to x)
In client, you don't need Preserve.
Make since?