hch
2026-03-21 8c46bc3e9de02cd5aa8d399bbc3e852fe0bfaefc
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);
}