hch
2026-01-10 7c7ee0d378cf223abd3e2f8fbf4d51fa1fcd1939
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);
}