少年修仙传客户端代码仓库
hch
2025-03-19 6770e1eb64c4282def45adb824b14b2a407fdd30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using UnityEngine;
using System.Collections;
 
// A3 54 法器信息 #tagMCFaQiInfo
 
public class IL_HA354_tagMCFaQiInfo : GameNetPackBasic {
    public byte LV;    //等阶
    public uint EatItemCount;    //当前阶已吃丹个数
 
    public IL_HA354_tagMCFaQiInfo () {
        _cmd = (ushort)0xA354;
    }
 
    public override void ReadFromBytes (byte[] vBytes) {
        TransBytes (out LV, vBytes, NetDataType.BYTE);
        TransBytes (out EatItemCount, vBytes, NetDataType.DWORD);
    }
 
}