UISettingComponent.cs 614 B

123456789101112131415161718192021222324
  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 UISettingComponent : Entity, IAwake
  9. {
  10. public GameObject verCheckBtn;
  11. public GameObject quitLoginBtn;
  12. public GameObject quitGameBtn;
  13. public GameObject gameoBgVedioSlider;
  14. public GameObject gameoInVedioSlider;
  15. public GameObject gameoBgVedioBtn;
  16. public GameObject gameoInVedioBtn;
  17. public GameObject closeBtn;
  18. public bool isGameInVedio = false;
  19. public bool isGameBgVedio = false;
  20. }
  21. }