| 提交 | 用户 | age | ||
| ed7b73 | 1 | // A3 B3 装备部位星级信息 #tagMCEquipPartStarLVInfo |
| H | 2 | |
| 3 | struct tagMCEquipPartStarLV | |
| 4 | { | |
| 5 | BYTE PackType; | |
| 6 | BYTE EquipIndex; | |
| 7 | WORD EquipPartStarLV; | |
| 8 | DWORD Proficiency; | |
| 9 | }; | |
| 10 | ||
| 11 | struct tagMCEquipPartStarLVInfo | |
| 12 | { | |
| 13 | tagHead Head; | |
| 14 | BYTE Count; // 信息个数 | |
| 15 | tagMCEquipPartStarLV InfoList[Count]; // 信息列表 | |
| 16 | }; | |