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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
using System;
using System.Collections.Generic;
using ProtoBuf;
namespace KKSG
{
[ProtoContract(Name = "BattleStatisticsNtf")]
[Serializable]
public class BattleStatisticsNtf : IExtensible
{
[ProtoMember(1, Name = "skillID", DataFormat = DataFormat.TwosComplement)]
public List<uint> skillID
{
get
{
return this._skillID;
}
}
[ProtoMember(2, Name = "skillCount", DataFormat = DataFormat.TwosComplement)]
public List<int> skillCount
{
get
{
return this._skillCount;
}
}
[ProtoMember(3, Name = "skillValue", DataFormat = DataFormat.TwosComplement)]
public List<double> skillValue
{
get
{
return this._skillValue;
}
}
[ProtoMember(4, Name = "mobID", DataFormat = DataFormat.TwosComplement)]
public List<uint> mobID
{
get
{
return this._mobID;
}
}
[ProtoMember(5, Name = "mobCount", DataFormat = DataFormat.TwosComplement)]
public List<int> mobCount
{
get
{
return this._mobCount;
}
}
[ProtoMember(6, Name = "mobValue", DataFormat = DataFormat.TwosComplement)]
public List<double> mobValue
{
get
{
return this._mobValue;
}
}
private readonly List<uint> _skillID = new List<uint>();
private readonly List<int> _skillCount = new List<int>();
private readonly List<double> _skillValue = new List<double>();
private readonly List<uint> _mobID = new List<uint>();
private readonly List<int> _mobCount = new List<int>();
private readonly List<double> _mobValue = new List<double>();
private IExtension extensionObject;
IExtension IExtensible.GetExtensionObject(bool createIfMissing)
{
return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
}
}
}
|