NewQuestion.cs 347 B

1234567891011121314151617
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class NewQuestion : QuestionCard {
  5. // Start is called before the first frame update
  6. void Start()
  7. {
  8. // Get question from server
  9. SetQuestionData();
  10. }
  11. public void SetQuestionData()
  12. {
  13. GetQuestion(false);
  14. }
  15. }