UIRealNameAuthenComponent.cs 455 B

12345678910111213141516171819
  1. using System.Collections.Generic;
  2. using UnityEngine;
  3. using UnityEngine.UI;
  4. namespace ET.Client
  5. {
  6. [ComponentOf(typeof(UI))]
  7. public class UIRealNameAuthenComponent : Entity, IAwake
  8. {
  9. public GameObject realNameObj;
  10. public GameObject unRealNameObj;
  11. public GameObject yourName;
  12. public GameObject yourAddress;
  13. public GameObject nameInput;
  14. public GameObject addressInput;
  15. public GameObject sureBtn;
  16. }
  17. }