| 1234567891011121314151617181920 |
- using System.Collections;
- using UnityEngine;
- using UnityEngine.EventSystems;
- public class NewQuestion : QuestionCard {
- // Start is called before the first frame update
- void Start()
- {
- // Get question from server
- SetQuestionData();
- }
-
- public void SetQuestionData()
- {
- GetQuestion(false);
- }
- }
|