using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using System.Linq;
using TMPro;


namespace SimplifyXR
{
    

    public class InstructionElementRoot : ElementRoot
    {

        [Header("Images")]
        public Image progressBarInner;
        public Image progressBarOuter;
        public Image instructionPanel;
        public Image noteIcon;
        public Image notePanel;

        [Header("Text")]
        public TextMeshProUGUI instructionText;
        public TextMeshProUGUI noteText;
        public TextMeshProUGUI progressText;

        [Header("Buttons")]
        public Button backButton;
        public Button nextButton;
        public Button acknowledgeButton;


        [Header("Objects")]
        public InstructionNote note;
        public InstructionMultipleChoice multipleChoice;
    }
}

