Added basic features

This commit is contained in:
2025-05-08 09:24:43 +09:00
parent 4acffb32e4
commit bee969f7ef
131 changed files with 69136 additions and 109 deletions

View File

@@ -0,0 +1,32 @@
using UnityEngine;
public class UIManager : MonoBehaviour
{
[SerializeField]
private GameObject _menuPanelUI;
[SerializeField]
private GameObject _successPanel;
[SerializeField]
private GameObject _gameOverPanel;
private void InitUI()
{
_successPanel.SetActive(false);
_gameOverPanel.SetActive(false);
}
private void Awake()
{
InitUI();
}
public void ShowSuccessPanel()
{
_successPanel.SetActive(true);
}
public void ShowGameOverPanel()
{
_gameOverPanel.SetActive(true);
}
}