InitSceneStart_CreateLoginUI.cs 241 B

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