Is there a way to make an array of a function() something like:
dim afunction(1)
for t=0 to 1
afunction(t)()
next
function afunction(0)()
;code
end function
function afunction(1)()
;code
end function
I know, that looks very weird.
dim afunction(1)
for t=0 to 1
afunction(t)()
next
function afunction(0)()
;code
end function
function afunction(1)()
;code
end function
I know, that looks very weird.