Project_WL/Assets/Script/UI/Eqiupment/EquipmentUI_Enchant.cs

17 lines
338 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class EquipmentUI_Enchant : uScrollViewMgr
{
public override void Set()
{
gameObject.SetActive(true);
Set_UI();
}
public override void Set_UI()
{
Set_ScrollView(table_enchanlist.Ins.Get_DataList());
}
}