I have an array:
grid[x,y]
how can I pass this to a function as a parameter?
ps. Fantastic work on BlitzMax Mark!!
grid[x,y]
how can I pass this to a function as a parameter?
ps. Fantastic work on BlitzMax Mark!!
Local grid[,]=New Int[10,10] Function modifyGrid(grid[,]) 'Code Here End Function