summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/AskGuildBossInfoArg.cs
blob: bab6227e5f16e041b57c7725db4a9d54d79cea76 (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 = "AskGuildBossInfoArg")]
	[Serializable]
	public class AskGuildBossInfoArg : IExtensible
	{
		private IExtension extensionObject;

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