Lobby Scene의 스테이지 입장 버튼 추가

This commit is contained in:
aube.lee
2025-02-02 00:05:44 +09:00
parent 5ef3387371
commit b748538835
6 changed files with 456 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TON
{
public class LobbyUI : UIBase
{
public void OnClickStageEntryButton()
{
Debug.Log("StageEntry");
}
}
}