using System.Collections; using System.Collections.Generic; using UnityEngine; public interface IUiSystemElement { void Show(); void Hide(); bool IsVisible(); }