From 97c6c0b09c1807b4a786cb89c7cbc3940f92d99d Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期三, 28 五月 2025 15:51:02 +0800
Subject: [PATCH] 92 【主界面】主线任务-服务端

---
 ServerPack/MapServerPack/HB1_Role/TaskInfo.des |    1 +
 ServerPack/MapServerPack/HB1_Role/TaskInfo     |    0 
 ServerPack/MapServerPack/HB1_Role/TaskInfo.h   |   16 ++++++++++++++++
 3 files changed, 17 insertions(+), 0 deletions(-)

diff --git a/ServerPack/MapServerPack/HB1_Role/TaskInfo b/ServerPack/MapServerPack/HB1_Role/TaskInfo
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/ServerPack/MapServerPack/HB1_Role/TaskInfo
diff --git a/ServerPack/MapServerPack/HB1_Role/TaskInfo.des b/ServerPack/MapServerPack/HB1_Role/TaskInfo.des
new file mode 100644
index 0000000..74dc038
--- /dev/null
+++ b/ServerPack/MapServerPack/HB1_Role/TaskInfo.des
@@ -0,0 +1 @@
+B1 10 当前任务信息 #tagMCTaskInfo
diff --git a/ServerPack/MapServerPack/HB1_Role/TaskInfo.h b/ServerPack/MapServerPack/HB1_Role/TaskInfo.h
new file mode 100644
index 0000000..e0110d2
--- /dev/null
+++ b/ServerPack/MapServerPack/HB1_Role/TaskInfo.h
@@ -0,0 +1,16 @@
+// B1 10 当前任务信息 #tagMCTaskInfo
+
+struct    tagMCTask
+{
+	BYTE		TaskGroup;	// 任务组,0-主线
+	DWORD		TaskID;		// 当前任务ID,可能为0,表示该分组暂时没有任务
+	DWORD		CurValue;		// 当前进度值
+	BYTE		State;		// 任务状态 1-进行中 2-可领取
+};
+
+struct    tagMCTaskInfo
+{
+	tagHead		Head;
+	BYTE		TaskCount;
+	tagMCTask	TaskList[TaskCount];	
+};

--
Gitblit v1.8.0