NewQuestion.cs 352 B

1234567891011121314151617181920
  1. using System.Collections;
  2. using UnityEngine;
  3. using UnityEngine.EventSystems;
  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. }