1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| // B1 02 Íæ¼ÒʱװƤ·ô¼¤»î״̬ #tagMCClothesCoatSkinState
|
| struct tagMCClothesCoatLVInfo
| {
| tagHead Head;
| DWORD CoatIndex; //ʱװË÷Òý
| BYTE CoatLV; //ʱװµÈ¼¶
| DWORD CoatExp; //ʱװף¸£Öµ¾Ñé
| };
|
| struct tagMCClothesCoatSkinState
| {
| tagHead Head;
| DWORD SkinOpenState; //ʱװ¼¤»î״̬, °´Ë÷Òý±íʾ¼¤»î״̬
| BYTE CoatNum; //ʱװ¸öÊý
| tagMCClothesCoatLVInfo CoatInfoList[CoatNum]; // ʱװÊý¾ÝÁбí
| };
|
|