lcy
2025-10-27 a4b795deb2242dbfa6fbbfb4dcaac40e856bb01e
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);
}