少年修仙传服务端代码子仓库
hxp
2018-08-17 ed7b730f61bf0d30a8d9c3a4e2c0ec7a08d2b111
提交 | 用户 | age
ed7b73 1 // A9 07 定时商店刷新倒计时 #tagGCShopRefreshTimeList
H 2
3 struct    tagGCShopRefreshTime
4 {
5     tagHead        Head;
6     DWORD        ShopID;        // 商店ID
7     DWORD        RemainSecond;    // 多少秒后刷新
8 };
9
10 struct    tagGCShopRefreshTimeList
11
12 {
13     tagHead        Head;
14     BYTE        ShopCnt;            //商店信息个数
15     tagGCShopRefreshTime    ShopTimeInfoList[ShopCnt];    //商店信息列表
16 };