UILoginComponent.cs 597 B

1234567891011121314151617181920212223242526
  1. using UnityEngine;
  2. namespace ET.Client
  3. {
  4. [ComponentOf(typeof(UI))]
  5. public class UILoginComponent: Entity, IAwake
  6. {
  7. public GameObject account;
  8. public GameObject password;
  9. public GameObject loginBtn;
  10. public GameObject phoneObj;
  11. public GameObject getCodeBtn;
  12. public GameObject sureBtn;
  13. public GameObject phoneBtn;
  14. public GameObject wechatBtn;
  15. public GameObject closePhoneBtn;
  16. public GameObject testObj;
  17. public GameObject inputIPObj;
  18. public GameObject inputPortObj;
  19. public GameObject ipSureBtn;
  20. public GameObject closeTestBtn;
  21. public GameObject testBtn;
  22. }
  23. }