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);
|
}
|
|
}
|