lcy
2026-06-10 1adf0932629c4154f6e2ff854e75c48019a3972b
1
2
3
4
5
6
7
8
9
10
11
12
using UnityEngine;
using UnityEngine.UI;
 
public class GuildAtkDefBatAwardPreviewHeaderCell : CellView
{
    [SerializeField] TextEx titleText;
 
    public void SetTitle(string text)
    {
        titleText.text = text;
    }
}