UILoginComponent.cs 237 B

123456789101112131415
  1. using System;
  2. using System.Net;
  3. using UnityEngine;
  4. using UnityEngine.UI;
  5. namespace ET
  6. {
  7. public class UILoginComponent: Entity, IAwake
  8. {
  9. public GameObject account;
  10. public GameObject password;
  11. public GameObject loginBtn;
  12. }
  13. }