InitSceneStart_CreateLoginUI.cs 243 B

12345678910111213
  1. using Model;
  2. namespace Hotfix
  3. {
  4. [Event(EventIdType.InitSceneStart)]
  5. public class InitSceneStart_CreateLoginUI: AEvent
  6. {
  7. public override void Run()
  8. {
  9. UI ui = Game.Scene.GetComponent<UIComponent>().Create(UIType.UILogin);
  10. }
  11. }
  12. }