首次提交
This commit is contained in:
21
Assets/Scripts/NBC/UI/Runtime/UIKitFacade.cs
Normal file
21
Assets/Scripts/NBC/UI/Runtime/UIKitFacade.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
namespace NBC
|
||||
{
|
||||
public class UI
|
||||
{
|
||||
private static UIManager _inst;
|
||||
|
||||
public static UIManager Inst
|
||||
{
|
||||
get
|
||||
{
|
||||
if (_inst == null)
|
||||
{
|
||||
_inst = new UIManager();
|
||||
_inst.Start();
|
||||
}
|
||||
|
||||
return _inst;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user