디자인 적용

This commit is contained in:
logonkhi
2025-08-07 21:12:44 +09:00
parent 2e4718291e
commit 3297a5d1f3
139 changed files with 35760 additions and 736 deletions

View File

@@ -0,0 +1,21 @@
#nullable enable
using Cysharp.Threading.Tasks;
using UnityEngine;
using UVC.UI.Tab;
namespace UVC.Factory.Modal.Settings
{
public class AlarmSettingTabContent : MonoBehaviour, ITabContent
{
public void SetContentData(object? data)
{
}
public UniTask OnCloseAsync()
{
return UniTask.CompletedTask;
}
}
}