Hi!

I started writing a Civilization I clone but quickly hit a problem with the map generation process. I was thinking about using RemObjects Pascal Script to allow for different map generation scripts.

In Delphi, I'm using a simple multidimensional array like this:
Code:
TMap = record
    Tiles: array[0..255,0..255] of TTile;
  end;
Pascal Script gives me errors when I try to compile a multidimensional array. Normal arrays work so I guess that it simply doesn't support them. Do you have any ideas for a workaround?