using UnityEngine; namespace ET { public class LoadingBeginEvent_CreateLoadingUI : AEvent { protected override async ETTask Run(EventType.LoadingBegin args) { await UIHelper.Create(args.Scene, UIType.UILoading); } } }