23 lines
450 B
C#
23 lines
450 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using MotionFramework;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
/// <summary>
|
|
/// 排行榜管理
|
|
/// </summary>
|
|
public class RankingListManager : MonoBehaviour
|
|
{
|
|
private void Awake()
|
|
{
|
|
this.GetComponent<Button>().onClick.AddListener(ShowPage);
|
|
}
|
|
|
|
private void ShowPage()
|
|
{
|
|
MotionEngine.GetModule<JavaScriptCaller>().JumpToRank();
|
|
}
|
|
}
|