hch
2025-10-24 863ed90b40671e61eee50c0ffe14630560f63c27
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);
}