private void Start()
    {
        // Set up values

        // Set up default amount of points and total questions
        m_Canvas.SetPoints(0);
        m_Canvas.InitProgress((uint)m_Questions.Length);

        // Change the current amount of points and current question value
        m_Canvas.ChangePoints(0);
        m_Canvas.ChangeProgress(0);

        // Set up the first question
        m_QuestionIndex = 0;
        NextQuestion();
    }