Hey guys!
Is possible to use arrays as parameters?
example:
or something like this
Is possible to use arrays as parameters?
example:
JASS:
globals
unit array x
endglobals
function b takes unit array p returns nothing
. . .
endfunction
function a takes nothing returns nothing
. . .
call b(x)
. . .
endfunction
or something like this