namespace ET.Client { public static class UIHelper { public static async ETTask Create(Scene scene, string uiType, UILayer uiLayer) { return await scene.GetComponent().Create(uiType, uiLayer); } public static async ETTask Remove(Scene scene, string uiType) { scene.GetComponent().Remove(uiType); await ETTask.CompletedTask; } } }