MobilePanel.cs 340 B

1234567891011121314151617181920212223242526
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class MobilePanel : BasePanel
  5. {
  6. public override void OnCloseWindow()
  7. {
  8. }
  9. public override void OnDestroyWindow()
  10. {
  11. }
  12. public override void OnInitWindow()
  13. {
  14. }
  15. public override void OnShowWindow()
  16. {
  17. }
  18. }