xdh
2018-08-10 fdb90e687d049dbb52279f9704f11fda7a6baf1a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// A7 04 Í¨ÖªÊÀ½çBossÉËѪÁбí #tagMCBossHurtList
 
struct    tagMCHurtPlayer
 
{
    tagHead         Head;
    DWORD        PlayerID;        // ÉËÑªÍæ¼ÒID
    BYTE        NameLen;
    char        PlayerName[NameLen];
    DWORD        HurtValue;    // ÀÛ¼ÆÉËѪ
};
 
 
struct    tagMCBossHurtList
 
{
    tagHead         Head;
    DWORD        ObjID;
    DWORD        BossID;
    BYTE        IsSort;    // ÊÇ·ñÅÅÐò¹ýµÄ£¬Ò»°ãboss±»»÷ɱºó»áͳһͬ²½Ò»´ÎÅÅÐò¹ýµÄ×îÖÕ½á¹û£¬ÆäËûÇé¿öÏ¿ͻ§¶Ë×Ô¼ºÅÅÐò
    WORD        HurtCnt;    // ÉËÑªÍæ¼Ò¸öÊý
    tagMCHurtPlayer    HurtPlayerList[HurtCnt];    // ÉËÑªÍæ¼ÒÁбí
};