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
// C0 22 ¿ç·þÅÅλ¾º²Â¹«¹²ÐÅÏ¢ #tagGCChampionshipGuessPubInfo
 
struct    tagGCChampionshipGuessPlayerPub
{
    DWORD        PlayerID;        // Ä¿±êÍæ¼ÒID
    DWORD        SupportCount;    // Ö§³ÖÈËÊý
};
 
struct    tagGCChampionshipGuessPubList
{
    BYTE        GuessType;    //¾º²ÂÀàÐÍ 8-8Ç¿£»4-4Ç¿ÅÅλ
    BYTE        PlayerCount;
    tagGCChampionshipGuessPlayerPub    GuessPlayerList[PlayerCount];    // ±»¾º²ÂÍæ¼ÒÁбí
};
 
struct    tagGCChampionshipGuessPubInfo
{
    tagHead        Head;
    BYTE        ZoneID;        // ÅÅλÊý¾Ý·ÖÇøID
    BYTE        Count;
    tagGCChampionshipGuessPubList        GuessList[Count];
};