Exemplo n.º 1
0
 private void OnLostGame()
 {
     if (mBrowser != null)
     {
         mBrowser.SendGameCancelled(mGameInfo.GameId);
     }
     if (mFoundGame)
     {
         Invoke(new SimpleDelegate(ResetGameInfo));
     }
 }
Exemplo n.º 2
0
        void OnLostGame()
        {
            if (_browser != null)
            {
                _browser.SendGameCancelled(_gameInfo.GameId);
            }

            if (_foundGame)
            {
                Invoke(new Action(ResetGameInfo));
            }
        }
Exemplo n.º 3
0
 private void OnLostGame()
 {
     if (mBrowser != null)
     {
         mBrowser.SendGameCancelled(mGameInfo.GameId);
     }
     if (mFoundGame)
     {
         ResetGameInfo();
     }
 }