UIInvateComponent.cs 368 B

1234567891011121314151617
  1. using System.Collections.Generic;
  2. using UnityEngine;
  3. using UnityEngine.UI;
  4. namespace ET.Client
  5. {
  6. [ComponentOf(typeof(UI))]
  7. public class UIInvateComponent : Entity, IAwake
  8. {
  9. public GameObject InvateObj;
  10. public GameObject UnInvateObj;
  11. public GameObject yourInvate;
  12. public GameObject invateInput;
  13. public GameObject sureBtn;
  14. }
  15. }