UIShopForm.cs 555 B

123456789101112131415161718192021222324252627
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace MetaClient
  5. {
  6. public class UIShopForm : UGuiForm
  7. {
  8. // Start is called before the first frame update
  9. public void CloseUiShopFun()
  10. {
  11. this.Close();
  12. }
  13. protected override void OnOpen(object userData)
  14. {
  15. base.OnOpen(userData);
  16. }
  17. protected override void OnClose(bool isShutdown, object userData)
  18. {
  19. base.OnClose(isShutdown, userData);
  20. }
  21. }
  22. }