hch
2025-08-25 af8dafd75f9a6fae017734d58fc7b34d6bdcd0f4
1
2
3
4
5
6
7
using UnityEngine;
public abstract class ScrollerUI : MonoBehaviour
{
    public ScrollerDataType type=ScrollerDataType.Header;
 
    public abstract void Refresh(CellView cell);
}