UICommonServerMsgComponent.cs 459 B

12345678910111213141516171819
  1. using DG.Tweening;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.UI;
  5. namespace ET.Client
  6. {
  7. [ComponentOf(typeof(UI))]
  8. public class UICommonServerMsgComponent : Entity, IAwake
  9. {
  10. public GameObject msg_bg;
  11. public Text msg_txt;
  12. public bool isShowingMsg = false;
  13. public List<string> listTask = new List<string>();
  14. public TweenCallback twScale;
  15. public TweenCallback twMove;
  16. }
  17. }