IUiSystemElement.cs 178 B

1234567891011
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public interface IUiSystemElement
  5. {
  6. void Show();
  7. void Hide();
  8. bool IsVisible();
  9. }