少年修仙传客户端代码仓库
hch
2024-12-16 9377811d0ba27047e1e5ec2348a28eba1033d59d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using UnityEngine;
using System.Collections;
 
// A5 44 通天令领取等级奖励 #tagCMGetTongTianLVAward
 
public class IL_CA544_tagCMGetTongTianLVAward : GameNetPackBasic {
    public byte TTLV;    // 领取对应等级奖励,发255为一键领取所有等级奖励,包含仙品奖励
    public byte IsXian;    // 是否领取仙品奖励,仅指定等级奖励有效
 
    public IL_CA544_tagCMGetTongTianLVAward () {
        combineCmd = (ushort)0x03FE;
        _cmd = (ushort)0xA544;
    }
 
    public override void WriteToBytes () {
        WriteBytes (TTLV, NetDataType.BYTE);
        WriteBytes (IsXian, NetDataType.BYTE);
    }
 
}