少年修仙传客户端代码仓库
hch
2025-02-18 fdbf8c40dce78d9e747e7300a84df4c82aaacc8c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using UnityEngine;
using System.Collections;
 
// AA 18 仙匣秘境活动奖池刷新 #tagCMActXianXiaMJAwardPoolRefresh
 
public class IL_CAA18_tagCMActXianXiaMJAwardPoolRefresh : GameNetPackBasic {
    public byte ActNum;    //活动编号
 
    public IL_CAA18_tagCMActXianXiaMJAwardPoolRefresh () {
        combineCmd = (ushort)0x03FE;
        _cmd = (ushort)0xAA18;
    }
 
    public override void WriteToBytes () {
        WriteBytes (ActNum, NetDataType.BYTE);
    }
 
}