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); } }