Hi there.
I have this dynamic 2d array of records:
TTerrainCell = record
Index : integer;
end;
Terrain : array of array of TTCell;
And a loading procedure:
var
f : file of byte;
begin
assignfile(f,filename);
reset(f);
blockread(f,Header,sizeof(TMapHeader))...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.