1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| using UnityEngine;
| using System.Collections;
|
| // B3 30 情缘相关信息 #tagMCLoveInfo
|
| public class IL_HB330_tagMCLoveInfo : GameNetPackBasic {
| public uint EatCandyToday; // 今日已吃喜糖次数,包含免费及付费的所有次数
|
| public IL_HB330_tagMCLoveInfo () {
| _cmd = (ushort)0xB330;
| }
|
| public override void ReadFromBytes (byte[] vBytes) {
| TransBytes (out EatCandyToday, vBytes, NetDataType.DWORD);
| }
|
| }
|
|