UILoginComponent.cs 199 B

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