Beispiel #1
0
 public void NextQuestion()
 {
     numberOfQuestionsAsked++;
     //Do not show a new question if there are already enough questions showed.
     if (numberOfQuestionsAsked < 10)
     {
         questionBoard.NumberInstantiation();
         answerBoard.NextQuestion();
         timeUntilNextQuestion = timeBetweenTwoQuestion;
     }
 }