hch
昨天 0f1e31c6f1005bf2cf1078db31c866597f0b3f95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.Collections.Generic;
using UnityEngine;
 
// 开服活动-武将冲榜 排行奖励
public class OSRankHeroTrainAwardWin : OSRankAwardBaseWin
{
    protected override int GetRankType() => 7; 
    
    protected override ICollection<int> GetAwardKeys() => OSActivityManager.Instance.heroTrainRankAwards.Keys;
 
    protected override void OnRefreshCell(ScrollerDataType type, CellView cell)
    {
        var _cell = cell.GetComponent<OSRankHeroTrainAwardCell>();
        _cell.Display(cell.index);
    }
}