From a239d18f75c01ea7999145dfe9a3e9c52edd2a1b Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期三, 23 七月 2025 12:12:56 +0800
Subject: [PATCH] 80 【常规】背包-服务端(增加背包购买格子;)

---
 ServerPack/HA2_Package/PackBuyInfo.h   |   14 ++++++++++++++
 ServerPack/HA2_Package/PackBuyInfo.des |    1 +
 ServerPack/HA2_Package/PackBuyInfo     |    0 
 3 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/ServerPack/HA2_Package/PackBuyInfo b/ServerPack/HA2_Package/PackBuyInfo
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/ServerPack/HA2_Package/PackBuyInfo
diff --git a/ServerPack/HA2_Package/PackBuyInfo.des b/ServerPack/HA2_Package/PackBuyInfo.des
new file mode 100644
index 0000000..8173bcd
--- /dev/null
+++ b/ServerPack/HA2_Package/PackBuyInfo.des
@@ -0,0 +1 @@
+A2 07 背包购买格子信息 #tagSCPackBuyInfo
diff --git a/ServerPack/HA2_Package/PackBuyInfo.h b/ServerPack/HA2_Package/PackBuyInfo.h
new file mode 100644
index 0000000..42f41a8
--- /dev/null
+++ b/ServerPack/HA2_Package/PackBuyInfo.h
@@ -0,0 +1,14 @@
+// A2 07 背包购买格子信息 #tagSCPackBuyInfo
+
+struct	tagSCPackBuy
+{
+	BYTE		PackType;	// 背包类型
+	WORD		BuyCnt;		// 已购买次数
+};
+
+struct	tagSCPackBuyInfo
+{
+	tagHead		Head;
+	BYTE		Count;
+	tagSCPackBuy	BuyInfoList[Count];
+};

--
Gitblit v1.8.0