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

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