Hello forums,
I am trying to figure out if there is a way to access an array via two different classes.
My main class (which extends sprite) is loading data from an xml file and putting it into a multi-dimensional array. With another class (in this instance called “test”) I want to be able to pull the data from that array for use within test. The test class also extends sprite.
I want to try and avoid passing this data as function arguments because there is a fair few dimensions to my array (10 in total.)
Thanks guys!