lcy
2026-03-17 fbe4d7aca9ec0aa7b96197eef705bb5fa6be875f
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;
    }
}