1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| // A9 01 ÊÀ½çboss·ÖÁ÷Ïß·boss״̬ #tagGCBossShuntLineStateInfo
|
| struct tagGCBossShuntLineState
| {
| DWORD BossID; // bossID
| BYTE DeadLineCount;
| BYTE DeadLineList[DeadLineCount]; // ÒÑËÀÍöµÄÏß·Áбí
| };
|
| struct tagGCBossShuntLineStateInfo
|
| {
| tagHead Head;
| BYTE Count;
| tagGCBossShuntLineState BossLineStateInfo[Count]; //boss·ÖÁ÷Ïß·ÐÅÏ¢Áбí
| };
|
|