how do you access the inner class in a nested class through the outer class
PHP Code:
class Game{

      public:
      class 
Ball
i have the class game and the inner class ball; i want too access the Ball member functions through the class Game like this.
Game.Ball.Member_Function();