少年修仙传客户端代码仓库
hch
2025-06-12 204ef05a831c9484e2abc561d27ecbff7c797453
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;
 
// B2 12 领取功能系统特权奖励 #tagCMGetFuncSysPrivilegeAward
 
public class IL_CB212_tagCMGetFuncSysPrivilegeAward : GameNetPackBasic {
    public byte FuncSysID;    // 功能系统ID
    public byte DayNum;    // 第X天,1为第1天
 
    public IL_CB212_tagCMGetFuncSysPrivilegeAward () {
        combineCmd = (ushort)0x03FE;
        _cmd = (ushort)0xB212;
    }
 
    public override void WriteToBytes () {
        WriteBytes (FuncSysID, NetDataType.BYTE);
        WriteBytes (DayNum, NetDataType.BYTE);
    }
 
}