1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| // A3 B3 ×°±¸²¿Î»ÐǼ¶ÐÅÏ¢ #tagMCEquipPartStarLVInfo
|
| struct tagMCEquipPartStarLV
| {
| BYTE PackType;
| BYTE EquipIndex;
| WORD EquipPartStarLV;
| DWORD Proficiency;
| };
|
| struct tagMCEquipPartStarLVInfo
| {
| tagHead Head;
| BYTE Count; // ÐÅÏ¢¸öÊý
| tagMCEquipPartStarLV InfoList[Count]; // ÐÅÏ¢Áбí
| };
|
|