lcy
2026-06-10 8e2c3554627fd4c65b4f0d5ad6bbc25a36f47854
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;
    }
}