1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| // B0 20 Ĥ°ÝÐÅÏ¢Áбí #tagGCWorshipInfoList
|
| struct tagGCWorshipInfo
| {
| DWORD PlayerID; // Ä¿±êÍæ¼ÒID
| BYTE WorshipType; // Ĥ°ÝÀàÐÍ
| DWORD WorshipValue; // Ĥ°ÝÀàÐͶÔÓ¦µÄ¹¦ÄÜÖµ£¬ÈçÃû´Î»òÆäËû£¬ÓɾßÌåĤ°ÝÀàÐͶ¨Òå¶ÔÓ¦Öµº¬Òå
| WORD InfoLen;
| char PlayerInfo[InfoLen]; // Íæ¼ÒÐÅÏ¢{k:v, ...}
| };
|
| struct tagGCWorshipInfoList
| {
| tagHead Head;
| BYTE WorshipCount;
| tagGCWorshipInfo WorshipInfoList[WorshipCount];
| };
|
|