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;
    }
}