少年修仙传客户端代码仓库
hch
2025-06-12 204ef05a831c9484e2abc561d27ecbff7c797453
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using UnityEngine;
using System.Collections;
 
// A1 09 玩家累计在线时长 #tagMCOnLineTimeTotal
 
public class IL_HA109_tagMCOnLineTimeTotal : GameNetPackBasic {
    public uint OnLineTimeTotal;    //累计在线时长(秒)
 
    public IL_HA109_tagMCOnLineTimeTotal () {
        _cmd = (ushort)0xA109;
    }
 
    public override void ReadFromBytes (byte[] vBytes) {
        TransBytes (out OnLineTimeTotal, vBytes, NetDataType.DWORD);
    }
 
}