18 lines
356 B
C#
18 lines
356 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class ClockInManager : MonoBehaviour
|
|
{
|
|
void Start()
|
|
{
|
|
this.GetComponent<Button>().onClick.AddListener(OpenAchievementPage);
|
|
}
|
|
|
|
private void OpenAchievementPage()
|
|
{
|
|
UIManager.Instance.ShowPage("签到");
|
|
}
|
|
}
|