using ET.EventType; using libx; using System; using System.Collections.Generic; using UnityEngine; namespace ET { public class AppStartInitFinish_StartUpdater : AEvent { public override async ETTask Run(AppStartInitFinish args) { UpdateScreen updater = GameObject.Find("Updater/UpdateScreen").GetComponent(); updater.enabled = true; await ETTask.CompletedTask; } } }