Files
BabyVideo/Assets/Scripts/NBC/UI/Runtime/UIKitFacade.cs
2026-02-09 20:10:14 +08:00

21 lines
377 B
C#

namespace NBC
{
public class UI
{
private static UIManager _inst;
public static UIManager Inst
{
get
{
if (_inst == null)
{
_inst = new UIManager();
_inst.Start();
}
return _inst;
}
}
}
}