summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/DragonGroupRecordC2S.cs
blob: 2b8ee40f2f5931e3b5af07e8e607bcaf2c06c42a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using ProtoBuf;

namespace KKSG
{
	[ProtoContract(Name = "DragonGroupRecordC2S")]
	[Serializable]
	public class DragonGroupRecordC2S : IExtensible
	{
		private IExtension extensionObject;

		IExtension IExtensible.GetExtensionObject(bool createIfMissing)
		{
			return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
		}
	}
}