主页与Task任务处理

This commit is contained in:
YiHan0621
2025-09-12 11:39:17 +08:00
parent 2151631c59
commit 8506590b12
20 changed files with 579 additions and 60 deletions

View File

@@ -0,0 +1,29 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
namespace TcgEngine.UI
{
public class UIFrame : UIPanel
{
public Button uiFrameHideButton;
protected override void Awake()
{
base.Awake();
Hide();
}
protected override void Start()
{
uiFrameHideButton.onClick.AddListener(OnUiFrameHide);
}
private void OnUiFrameHide()
{
Hide();
}
}
}