using System.Collections; using System.Collections.Generic; using TMPro; using UnityEngine; public class UI_StepsPanelItem : BaseItem { /// /// ²½ÖèÎÄ×Ö /// public TextMeshProUGUI Step_Text; public void Init(string LabelDate) { Step_Text.text = LabelDate; } }