I can create an array of OBJ_X like that:
int[]Array01={OBJ_0,OBJ_220};
But if I do:
int[]Array02(2);
Array02[0]=Array01[1];
The value of Array02[0] dont seem to correspond anymore to OBJ_220.
Is it normal or am I doing something wrong?
If it's normal would there be a way to change that?
int[]Array01={OBJ_0,OBJ_220};
But if I do:
int[]Array02(2);
Array02[0]=Array01[1];
The value of Array02[0] dont seem to correspond anymore to OBJ_220.
Is it normal or am I doing something wrong?
If it's normal would there be a way to change that?