IUIView.cs 468 B

123456789101112131415161718192021
  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. }
  19. }