How do you create a 2D Array within a type, since you do not dimension the array as in BlitzPlus
Type Grid
Field GridNumber:Int
Field GridSector:Int
Field GridImage:TImage
End Type
The GridImage field will hold a graphic image used with a for loop to draw the grid. This should be done without the use of TLists as I will need to access an element of the GridNumber without looping through the list.
Type Grid
Field GridNumber:Int
Field GridSector:Int
Field GridImage:TImage
End Type
The GridImage field will hold a graphic image used with a for loop to draw the grid. This should be done without the use of TLists as I will need to access an element of the GridNumber without looping through the list.