LoginFinish_CreateLobbyUI.cs 228 B

123456789101112
  1. 
  2. namespace ET
  3. {
  4. public class LoginFinish_CreateLobbyUI: AEvent<EventType.LoginFinish>
  5. {
  6. public override async ETTask Run(EventType.LoginFinish args)
  7. {
  8. await UIHelper.Create(args.ZoneScene, UIType.UILobby);
  9. }
  10. }
  11. }