lcy
2026-06-11 1ed2b3ed29f629f102b3174f57553ffed4181dd3
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;
    }
}