hch
1 天以前 f88d20f956b355588cf987a6534c39e016b1d8e8
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);
    }
}