Degullmok-client/Assets/GameUIController.cs

18 lines
348 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class GameUIController : MonoBehaviour
{
public void OnClickConfirmButton()
{
GameManager.Instance.OnClickConfirmButton();
}
public void OnClickRetryButton()
{
GameManager.Instance.RetryGame();
}
}