Hi,


I have a bunch of classes.
One of them is called Player.

Now in another class I want to create an array of Players. That's no problem.
But I wonder where I should declare this array so I can use it throughout my application. Because (obvious) if I declare the array in the class NewGame, I can't use it in the class Game or something..

How can I make the array 'global'..


Thanks,

MK