인게임옵션 UI만 추가 프리팹으로 생성

This commit is contained in:
Mingu Kim
2025-02-04 19:50:11 +09:00
parent f71aa0c086
commit f365190ba4
2 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TON
{
public class IngameOptionUI : UIBase
{
// Start is called before the first frame update
void Start()
{
UIManager.Show<IngameOptionUI>(UIList.IngameOptionUI);
}
// Update is called once per frame
void Update()
{
}
}
}