22 lines
412 B
C#
22 lines
412 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
/// <summary>
|
|
/// 排行榜管理
|
|
/// </summary>
|
|
public class RankingListManager : MonoBehaviour
|
|
{
|
|
private void Awake()
|
|
{
|
|
this.GetComponent<Button>().onClick.AddListener(ShowPage);
|
|
}
|
|
|
|
private void ShowPage()
|
|
{
|
|
UIManager.Instance.ShowPage("排行榜");
|
|
}
|
|
}
|