26.10.2010, 23:38
I don't really understand what you mean by expanding enum index. Do you mean the array size? Like..
Would become
For this I would recommend ******'s "foreach" include. And use iterators instead of enums.
I'm not sure. But I believe it is not possible to change a size of array, once created.
pawn Код:
enum SomeEnum{}
new Array[12][SomeEnum];
pawn Код:
enum SomeEnum{}
new Array[13][SomeEnum];
I'm not sure. But I believe it is not possible to change a size of array, once created.