15.05.2010, 13:31
Not that I know, however you could just create a definitions file you include into your script where you define the array sizes.
In your actual script file you include this file and from then on you can create new arrays that way:
new test_array[MY_ARRAY_SIZE];
Код:
def_arr.inc #define MY_ARRAY_SIZE 128
new test_array[MY_ARRAY_SIZE];