blob: 44cd9c5ef446a4ceec13d177eb8a4ba080885da1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
using System;
using System.IO;
using KKSG;
using ProtoBuf;
namespace XMainClient
{
internal class PtcC2G_BattleLogReport : Protocol
{
public BattleLogReport Data = new BattleLogReport();
public override uint GetProtoType()
{
return 10382u;
}
public override void Serialize(MemoryStream stream)
{
Serializer.Serialize<BattleLogReport>(stream, this.Data);
}
public override void DeSerialize(MemoryStream stream)
{
this.Data = Serializer.Deserialize<BattleLogReport>(stream);
}
public override void Process()
{
throw new Exception("Send only protocol can not call process");
}
}
}
|