hch
2025-10-27 e2c65de54cabc2d6bb5f08c3b5d49d764d9fe50c
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);
}