using System.Collections; using UnityEngine; namespace GFGGame { public interface IUIView { bool isShowing { get; } object viewData { get; set; } void Refresh(); void Show(); void Hide(); } }