cull(engine-cleanup): pass-8 phase-2 cascade round 1 after CardDetailUI stub

This commit is contained in:
gamer147
2026-07-03 22:33:26 -04:00
parent 8e6dbad56b
commit 3d641e9e35
28 changed files with 4 additions and 917 deletions

View File

@@ -29,24 +29,6 @@ public class CardCraftPanel : MonoBehaviour
[SerializeField]
private UILabel _cantDestructLabel;
public void Init(Action onClickCreateBtn, Action onClickDestructBtn)
{
UIEventListener.Get(_createButton.gameObject).onClick = delegate
{
if (UIManager.GetInstance().IsTouchable)
{
onClickCreateBtn();
}
};
UIEventListener.Get(_destructButton.gameObject).onClick = delegate
{
if (UIManager.GetInstance().IsTouchable)
{
onClickDestructBtn();
}
};
}
public void UpdateCraftPanel(CardParameter inCardParam, bool isUpdateHaveRedether = true)
{
SystemText systemText = Data.SystemText;