Ejemplo n.º 1
0
 public void GoToNextQuestion()
 {
     if (CurrentQuestion != null)
     {
         CurrentQuestion.HideObjects();
     }
     CurrentQuestion = GetRandomQuestion();
     CurrentQuestion.ShowObjects();
 }
Ejemplo n.º 2
0
 public void SetQuestionParent(PollQuestionComponent questionParent)
 {
     QuestionParent = questionParent;
 }