private void btRestart_Click(object sender, EventArgs e)
 {
     if (ActiveGame.IsGameStarted)
     {
         if (!GlobalVariants.ActiveProfile.DisableWarnings)
         {
             MesajSonuç msonuc = Mesaj.mbox.Göster(String.GetLangText("STI_GAME_RESIGN"), String.GetLangText("STI_GAME_RETURN_HDR"), MessageBoxButtons.YesNo);
             if (msonuc.MesajCevap != DialogResult.Yes)
             {
                 return;
             }
         }
         ActiveGame.Resign();
         return;
     }
     ActiveGame.RestartGame();
 }
 private void tekrarBaşlatCtrlRToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (!grpGame.Visible)
     {
         return;
     }
     if (ActiveGame.IsGameStarted)
     {
         if (!GlobalVariants.ActiveProfile.DisableWarnings)
         {
             MesajSonuç msonuc = Mesaj.mbox.Göster(String.GetLangText("STI_GAME_RESTART"), String.GetLangText("STI_GAME_RETURN_HDR"), MessageBoxButtons.YesNo);
             if (msonuc.MesajCevap != DialogResult.Yes)
             {
                 return;
             }
         }
     }
     ActiveGame.RestartGame();
 }