少年修仙传客户端代码仓库
hch
2025-03-03 28785d6ddf9c08e49527ede9405c7b6c93c6ed32
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using UnityEngine;
using System.Collections;
 
// AC 12 跨服运营活动结束 # tagGCCrossActEnd
 
public class IL_HAC12_tagGCCrossActEnd : GameNetPackBasic {
    public byte ActNameLen;
    public string ActName;
 
    public IL_HAC12_tagGCCrossActEnd () {
        _cmd = (ushort)0xAC12;
    }
 
    public override void ReadFromBytes (byte[] vBytes) {
        TransBytes (out ActNameLen, vBytes, NetDataType.BYTE);
        TransBytes (out ActName, vBytes, NetDataType.Chars, ActNameLen);
    }
 
}