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

namespace KKSG
{
	[ProtoContract(Name = "FishingState")]
	public enum FishingState
	{
		[ProtoEnum(Name = "LEAVE", Value = 1)]
		LEAVE = 1,
		[ProtoEnum(Name = "SITDOWN", Value = 2)]
		SITDOWN,
		[ProtoEnum(Name = "CAST", Value = 3)]
		CAST,
		[ProtoEnum(Name = "WAIT", Value = 4)]
		WAIT,
		[ProtoEnum(Name = "PULL", Value = 5)]
		PULL
	}
}