AppStartInitFinish_CreateLoginUI.cs 308 B

1234567891011
  1. namespace ET.Client
  2. {
  3. [Event(SceneType.Client)]
  4. public class AppStartInitFinish_CreateLoginUI: AEvent<Scene, EventType.AppStartInitFinish>
  5. {
  6. protected override async ETTask Run(Scene scene, EventType.AppStartInitFinish args)
  7. {
  8. await UIHelper.Create(scene, UIType.UILogin, UILayer.Mid);
  9. }
  10. }
  11. }