13 lines
325 B
C#
13 lines
325 B
C#
using TMPro;
|
|
|
|
public class PreviewUIPopup_Gwang : uScrollViewMgr
|
|
{
|
|
public TextMeshProUGUI t_count;
|
|
|
|
private void OnEnable()
|
|
{
|
|
var last = GamePanel.Instance.Get_AIScoreCards().FindAll(f => f.ToString().Contains("Ghwang"));
|
|
t_count.text = last.Count.ToString();
|
|
Set_ScrollView(last);
|
|
}
|
|
} |