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

namespace KKSG
{
	[ProtoContract(Name = "GardenQuestType")]
	public enum GardenQuestType
	{
		[ProtoEnum(Name = "MYSELF", Value = 1)]
		MYSELF = 1,
		[ProtoEnum(Name = "FRIEND", Value = 2)]
		FRIEND,
		[ProtoEnum(Name = "GUILD", Value = 3)]
		GUILD
	}
}