lcy
8 天以前 29671eb1c3ca9a42d083c2bb986a00a3c887007c
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;
    }
}