打开窗口框架

This commit is contained in:
2025-07-16 19:16:46 +08:00
parent a6f442044a
commit 5348216024
10 changed files with 125 additions and 15 deletions

View File

@@ -0,0 +1,18 @@
using UnityEngine;
namespace CreatGame.UI
{
public partial class UIMainView
{
public override void InitView()
{
base.InitView();
StarBtn.onClick.AddListener(OnStarBtnClick);
}
private void OnStarBtnClick()
{
}
}
}