IUIView.cs 502 B

12345678910111213141516171819202122
  1. using System.Collections;
  2. using UnityEngine;
  3. namespace GFGGame
  4. {
  5. public interface IUIView
  6. {
  7. bool isShowing { get; }
  8. object viewData { get; set; }
  9. string viewName { get; set; }
  10. long closeTime { get; set; }
  11. bool isReturnView { get; set; }
  12. bool isReturnWindow { get; set; }
  13. bool backRefresh { get; set; }
  14. void Refresh();
  15. void Show();
  16. void Hide();
  17. void Dispose();
  18. void SetAlpha(bool show);
  19. }
  20. }