lcy
昨天 5301d08eac2f7f0b25ce3f2bef7d24f92c79321c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.Collections.Generic;
using UnityEngine;
 
// 开服活动-命格冲榜 礼包界面
public class OSRankMinggeGiftWin : OSRankGiftBaseWin
{
    protected override void RefreshManagerSortList() => OSActivityManager.Instance.RefreshGiftSortList();
    
    protected override IList<int> GetGiftSortList() => OSActivityManager.Instance.osMinggeGiftSortList;
 
    protected override void OnRefreshCell(ScrollerDataType type, CellView cell)
    {
        var _cell = cell as OSRankMinggeGiftCell;
        _cell.Display(cell.index);
    }
}