天梯UI补充

This commit is contained in:
YiHan0621
2025-09-08 11:35:13 +08:00
parent bcb4f6fd3c
commit 409883801b
17 changed files with 745 additions and 51 deletions

View File

@@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using System.Linq;
using UnityEngine;
using TcgEngine;
using TcgEngine.Gameplay;
using TcgEngine.Client;
using System.Threading.Tasks;
namespace TcgEngine.Gameplay
{
/// <summary>
/// 任务管理器,负责任务的分配、进度追踪和奖励发放等功能
/// </summary>
public class TaskManagerGx : MonoBehaviour
{
public List<PlayerTask> PlayerTasks = new List<PlayerTask>();
public async void SavePayerData()
{
PlayerTasksResponse saveData = new PlayerTasksResponse();
// PlayerTaskResponse[] taskResponses = new PlayerTaskResponse[ taskResponses.taskId="login_task_1",
// assignedTime=1757067900,
// taskResponses.expireTime=1757154300,
// taskResponses.status=2,
// taskResponses.progress=1]
;
}
}
}