少年修仙传客户端代码仓库
hch
2025-07-02 600733c8f592cb9e65f2b7a3e110ac1d686e6bfe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using UnityEngine;
using System.Collections;
 
// AA 13 启动转盘 #tagCMActTurntableStart
 
public class IL_CAA13_tagCMActTurntableStart : GameNetPackBasic {
    public byte ActNum;    // 活动编号
 
    public IL_CAA13_tagCMActTurntableStart () {
        combineCmd = (ushort)0x03FE;
        _cmd = (ushort)0xAA13;
    }
 
    public override void WriteToBytes () {
        WriteBytes (ActNum, NetDataType.BYTE);
    }
 
}