少年修仙传服务端代码子仓库
提交 | 用户 | age
ed7b73 1 // AA 13 限时礼包玩家活动信息 #tagMCFlashGiftbagPlayerInfo
H 2
3 struct    tagMCFlashGiftbagBuyCount
4 {
5     DWORD        GiftbagID;    //礼包ID
6     WORD        BuyCount;    //本次活动已购买次数
7 };
8
9 struct    tagMCFlashGiftbagPlayerInfo
10 {
11     tagHead        Head;
bb813e 12     BYTE        ActNum;        //活动编号
ed7b73 13     BYTE        Count;
H 14     tagMCFlashGiftbagBuyCount        BuyCountList[Count];    //礼包购买次数信息
15 };