yyl
2025-06-13 eb1efcaa9be0e2340fc49b38dab8df18e36526c9
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);
}