驱蚊app
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 lines
279 B

  1. using UnityEngine;
  2. public abstract class UIBase : MonoBehaviour
  3. {
  4. public virtual void OnOpen(object param = null) { }
  5. public virtual void OnClose() { }
  6. // 可选的关闭接口
  7. public void Close()
  8. {
  9. UIManager.Instance.CloseUI(this.GetType().Name);
  10. }
  11. }