1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| using UnityEngine;
| using UnityEngine.UI;
|
| // 开服活动-红颜冲刺活动
| public class OSBeautyMMBaseWin : OSActivityBaseWin
| {
| // 红颜冲榜对应的 RankType 为 8
| protected override int GetRankType() => 8;
|
| protected override UIBase GetRankWin() => UIManager.Instance.OpenWindow<OSRankBeautyMMWin>(8);
|
| protected override UIBase GetAwardWin() => UIManager.Instance.OpenWindow<OSRankBeautyMMAwardWin>();
|
| protected override UIBase GetGiftWin() => UIManager.Instance.OpenWindow<OSRankBeautyMMGiftWin>();
| }
|
|