30 lines
547 B
C#
30 lines
547 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
/// <summary>
|
|
/// 排行榜
|
|
/// </summary>
|
|
public class RankingListComponent : MonoBehaviour
|
|
{
|
|
public Button backButton;
|
|
|
|
private void Awake()
|
|
{
|
|
|
|
backButton.onClick.AddListener(HideSellingGoodsUI);
|
|
}
|
|
|
|
private void ShowBackpackPage()
|
|
{
|
|
UIManager.Instance.ShowPage("排行榜");
|
|
}
|
|
|
|
|
|
public void HideSellingGoodsUI()
|
|
{
|
|
UIManager.Instance.HideUI("排行榜");
|
|
}
|
|
}
|