123456789101112131415161718192021222324252627 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- namespace MetaClient
- {
- public class UIShopForm : UGuiForm
- {
- // Start is called before the first frame update
- public void CloseUiShopFun()
- {
- this.Close();
- }
- protected override void OnOpen(object userData)
- {
- base.OnOpen(userData);
- }
- protected override void OnClose(bool isShutdown, object userData)
- {
- base.OnClose(isShutdown, userData);
- }
- }
- }
|