Exemple #1
0
 public override void WillTerminate(NSNotification notification)
 {
     if (_game != null)
     {
         _game.Dispose();
         _game = null;
     }
 }
Exemple #2
0
 public override void DidFinishLaunching(NSNotification notification)
 {
     _game = new ImplicitOrderingGame();
     _game.Run();
 }