hch
2025-06-04 362248ca8bd3d5304df84444c8d04a7456cc5cc0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// C0 23 ¿ç·þÅÅλ¾º²Â¸öÈËÐÅÏ¢ #tagGCChampionshipGuessPriInfo
 
struct    tagGCChampionshipGuessPlayerPri
{
    DWORD        PlayerID;        // Ä¿±êÍæ¼ÒID
    DWORD        MoneyTotal;    // ÒÑͶע¸ÃÍæ¼Ò»õ±Ò×ÜÊý
    BYTE        GuessRank;    // ¾º²ÂÃû´Î£¬Ã»ÓÐÃû´ÎµÄ¾º²ÂĬÈÏ0£»1-´ú±íµÚÒ»Ãû
};
 
struct    tagGCChampionshipGuessPriList
{
    BYTE        GuessType;    //¾º²ÂÀàÐÍ 8-8Ç¿£»4-4Ç¿ÅÅλ
    BYTE        PlayerCount;
    tagGCChampionshipGuessPlayerPri    GuessPlayerList[PlayerCount];    // ±»¾º²ÂÍæ¼ÒÁбí
};
 
struct    tagGCChampionshipGuessPriInfo
{
    tagHead        Head;
    BYTE        ZoneID;        // ÅÅλÊý¾Ý·ÖÇøID
    BYTE        Count;
    tagGCChampionshipGuessPriList        GuessList[Count];
};