/*public void FillUpWinScreen(MultiplayerWinScreen multik) {
     *      multik.SetReward (Pot);
     *      multik.CheckAdvertising ();
     *
     *      if (MultiplayerTutorialController.IsTutorInProgress ()) {
     *              multik.SetFakeLeftParticipant();
     *              multik.SetFakeRightParticipant();
     *              multik.CheckFakeMatchState ();
     *              WasFakeWin = multik.IsFakeWin;
     *
     *      } else {
     *              multik.SetLeftParticipant (CurrentMatch.LocalParticipant, MatchData.LocalPlayerTime);
     *              multik.CheckMatchState (MatchData);
     *
     *              if (CurrentMatch.Competitor != null) {
     *                      multik.SetRightParticipant (CurrentMatch.Competitor, MatchData.CompetitorTime);
     *              }
     *      }
     * }*/

    public void Quit()
    {
        ShowPreloader();
        WaitingForUpdate = true;

        if (CurrentMatch.IsLocalPlayerTurn)
        {
            CurrentMatch.QuitInTurn(matchData.Match.NextParticipant);
        }
        else
        {
            CurrentMatch.QuitOutOfTurn();
        }
    }