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