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