Exemplo n.º 1
0
 private void DoneWin()
 {
     state = Mission5State.Done;
     if (Controller != null)
     {
         Controller.Stop();
     }
     if (Opponent != null)
     {
         Opponent.Stop();
     }
     UI.MissionDone(true);
 }
Exemplo n.º 2
0
 private void Done()
 {
     state = Mission1State.Done;
     Controller.Stop();
     Opponent.Stop();
     //   PopupText.ShowText("You win!");
     UI.MissionDone();
 }