private void CheckEndCondition(object sender, EventArgs e)
 {
     if (Client.CheckIfGameIsFinished(CurrentGame) && !NextRoundCountdownCanRun)
     {
         timer1.Stop();
         QuestionCountdownCanRun = false;
         this.Hide();
         (new EndScreen(Client)).Show();
     }
 }