EnterMapFinish_RemoveLobbyUI.cs 243 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. Game.Scene.GetComponent<UIComponent>().Remove(UIType.UILobby);
  8. }
  9. }
  10. }