Project_WL/Assets/Script/zSettings/SettingsSelectPopup.cs

23 lines
441 B
C#
Raw Normal View History

2024-12-15 01:39:39 +00:00
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class SettingsSelectPopup : uScrollViewMgr
{
public override void Set()
{
base.Set();
OnClick_PC();
}
public void OnClick_PC()
{
Set_ScrollView(table_classconfig.Ins.Get_DataList());
}
public void OnClick_Mob()
{
Set_ScrollView(table_monsterlist.Ins.Get_DataList());
}
}