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

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