You know how you can declare constants globally like:
Simba Code:const
blah blah = ##;
How do I do that with an array of integers? Like an array of constant ID's:
Simba Code:const
GateID = [3506, 3507]; //Doesn't work..
var
GateID = [3506, 3507]: Array of Integers //Doesn't work.
I tried searching all the tutorials I know of but none of them do this.. instead they do it in the procedures themselves.. So Help me please.







Reply With Quote











