1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| // A5 04 Íæ¼ÒÕ½Ã˿Ƽ¼µÈ¼¶ #tagMCPlayerTechInfo
|
| struct tagMCPlayerTech
| {
| WORD TechID; // ¿Æ¼¼ID
| WORD TechLV; // ÌØ¼¼µÈ¼¶
| };
|
| struct tagMCPlayerTechInfo
|
| {
| tagHead Head;
| BYTE TechCnt; // ¿Æ¼¼¸öÊý
| tagMCPlayerTech TechInfoList[TechCnt]; // ¿Æ¼¼ÐÅÏ¢Áбí
| };
|
|
|