IUIView.cs 248 B

123456789101112131415
  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. void Refresh();
  10. void Show();
  11. void Hide();
  12. }
  13. }