diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/BattleStatisticsNtf.cs')
| -rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/BattleStatisticsNtf.cs | 84 | 
1 files changed, 84 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/BattleStatisticsNtf.cs b/Client/Assets/Scripts/XMainClient/KKSG/BattleStatisticsNtf.cs new file mode 100644 index 00000000..de957bee --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/BattleStatisticsNtf.cs @@ -0,0 +1,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);
 +		}
 +	}
 +}
  | 
