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

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