UIAlertComponent.cs 462 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.UI;
  5. namespace ET.Client
  6. {
  7. [ComponentOf(typeof(UI))]
  8. public class UIAlertComponent : Entity, IAwake
  9. {
  10. public GameObject cancelTxt;
  11. public GameObject cancelBtn;
  12. public GameObject sureTxt;
  13. public GameObject sureBtn;
  14. public GameObject contentTxt;
  15. public GameObject titleTxt;
  16. public Action<object> callback;
  17. }
  18. }