Files
M-Gameton-06/Gameton-06/Assets/Gameton/Scripts/UI/LobbyUI.cs
2025-02-02 00:22:01 +09:00

16 lines
326 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TON
{
public class LobbyUI : UIBase
{
public void OnClickStageEntryButton()
{
UIManager.Hide<LobbyUI>(UIList.LobbyUI);
UIManager.Show<StageEntryUI>(UIList.StageEntryUI);
}
}
}