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