yyl
昨天 9e8aa4c81f739980802fb9dbb2f3eff06aeb8d4c
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);
}