From d3c1eeef9dc8797047e5495a436136bb5f7f678c Mon Sep 17 00:00:00 2001
From: xdh <xiefantasy@qq.com>
Date: 星期三, 17 十月 2018 14:44:42 +0800
Subject: [PATCH] 4075 增加商城全服购买次数封包
---
ServerPack/GameServerPack/HA9_Function/StoreServerBuyCntInfo | 0
ServerPack/GameServerPack/HA9_Function/StoreServerBuyCntInfo.des | 1 +
ServerPack/GameServerPack/HA9_Function/StoreServerBuyCntInfo.h | 13 +++++++++++++
3 files changed, 14 insertions(+), 0 deletions(-)
diff --git a/ServerPack/GameServerPack/HA9_Function/StoreServerBuyCntInfo b/ServerPack/GameServerPack/HA9_Function/StoreServerBuyCntInfo
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/ServerPack/GameServerPack/HA9_Function/StoreServerBuyCntInfo
diff --git a/ServerPack/GameServerPack/HA9_Function/StoreServerBuyCntInfo.des b/ServerPack/GameServerPack/HA9_Function/StoreServerBuyCntInfo.des
new file mode 100644
index 0000000..a7b8905
--- /dev/null
+++ b/ServerPack/GameServerPack/HA9_Function/StoreServerBuyCntInfo.des
@@ -0,0 +1 @@
+A9 06 商城全服购买次数通知 #tagGCStoreServerBuyCntInfo
diff --git a/ServerPack/GameServerPack/HA9_Function/StoreServerBuyCntInfo.h b/ServerPack/GameServerPack/HA9_Function/StoreServerBuyCntInfo.h
new file mode 100644
index 0000000..5753e11
--- /dev/null
+++ b/ServerPack/GameServerPack/HA9_Function/StoreServerBuyCntInfo.h
@@ -0,0 +1,13 @@
+// A9 06 商城全服购买次数通知 #tagGCStoreServerBuyCntInfo
+
+struct tagGCStoreServerBuyCnt
+{
+ DWORD GoodsID; //商品标识
+ DWORD BuyCnt; //购买次数
+};
+struct tagGCStoreServerBuyCntInfo
+{
+ tagHead Head;
+ WORD Count; //数量
+ tagGCStoreServerBuyCnt InfoList[Count]; //次数信息
+};
--
Gitblit v1.8.0