21 lines
406 B
C#
21 lines
406 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
/// <summary>
|
|
/// 成就管理
|
|
/// </summary>
|
|
public class AchievementManager : MonoBehaviour
|
|
{
|
|
void Start()
|
|
{
|
|
this.GetComponent<Button>().onClick.AddListener(OpenAchievementPage);
|
|
}
|
|
|
|
private void OpenAchievementPage()
|
|
{
|
|
UIManager.Instance.ShowPage("成就");
|
|
}
|
|
}
|