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