13 lines
293 B
C#
13 lines
293 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
using TMPro;
|
||
|
|
|
||
|
|
public class DeckUI_Skills : uScrollViewMgr
|
||
|
|
{
|
||
|
|
public TextMeshProUGUI t_amount;
|
||
|
|
|
||
|
|
public void Set(List<CardListTableData> lst)
|
||
|
|
{
|
||
|
|
t_amount.text = table_localtext.Ins.Get_Text(122, lst.Count);
|
||
|
|
Set_ScrollView(lst);
|
||
|
|
}
|
||
|
|
}
|