2025-07-19 20:29:55 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using UnityEngine;
|
2025-07-16 19:16:46 +08:00
|
|
|
|
|
|
|
|
|
|
namespace CreatGame.UI
|
|
|
|
|
|
{
|
|
|
|
|
|
public partial class UIMainView
|
|
|
|
|
|
{
|
|
|
|
|
|
public override void InitView()
|
|
|
|
|
|
{
|
|
|
|
|
|
base.InitView();
|
|
|
|
|
|
StarBtn.onClick.AddListener(OnStarBtnClick);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void OnStarBtnClick()
|
|
|
|
|
|
{
|
2025-07-17 10:17:00 +08:00
|
|
|
|
StarBtnText.text = ConfigManager.Instance.Tables.TbLanguage.Get("Main_BtnTitle_Star").CN;
|
2025-07-16 23:07:19 +08:00
|
|
|
|
Debug.Log("OnStarBtnClick");
|
2025-07-16 19:16:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|