Name: Anonymous 2013-07-26 9:06
I'm trying to store variables generated in one class to an array in another class.
i.e (pseudo code):
why doesn't this work.
i.e (pseudo code):
Class example
{
x = 2+2;
}
Class stuff
{
array[0] = example.x;
}why doesn't this work.