Files
Fishing2/Assets/Scripts/UI/Common/GMPanel.cs
2025-05-10 12:49:47 +08:00

33 lines
658 B
C#

// 本脚本只在不存在时会生成一次。已存在不会再次生成覆盖
using UnityEngine;
using NBC;
namespace NBF
{
public partial class GMPanel : UIPanel
{
public override string UIPackName => "Common";
public override string UIResName => "GMPanel";
protected override void OnInit()
{
base.OnInit();
}
protected override void OnShow()
{
base.OnShow();
}
protected override void OnHide()
{
base.OnHide();
}
protected override void OnDestroy()
{
base.OnDestroy();
}
}
}