hch
10 天以前 d60ccb20a72755aecb2cfb4a7cb756eff6905f5c
1
2
3
4
5
6
7
8
9
10
11
12
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
 
public class OSRankBeautyMMAwardCell : OSRankAwardBaseCell
{
    // 返回红颜冲榜专属的奖励字典,供基类渲染
    protected override Dictionary<int, int[][]> GetRankAwards()
    {
        return OSActivityManager.Instance.beautyMMRankAwards;
    }
}