c++ has something like struct.
struct something
{
int i;
int j;
int k;
};
declaration:
something someVars;
so, you can just pass someVars to a function, and then say
someVars.i = 5;
someVars.j = 6;
someVars.k = 10;
is there anything like that in flash where i can just pass one variable that stores many variables?
thanks in advance.