hch
2026-03-20 2e1b809d4bb794b2dcd75e0e9223d3c2c5de991d
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;
    }
}