lcy
2026-06-11 4e03c806a21b83e7c828e2f5e3f2ba252a30abd6
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;
    }
}