EnterMapFinish_RemoveLobbyUI.cs 235 B

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