summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/WageRewardState.cs
blob: 88f731ecae795908e7e2861f703a0606980b482b (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 = "WageRewardState")]
	public enum WageRewardState
	{
		[ProtoEnum(Name = "cannot", Value = 1)]
		cannot = 1,
		[ProtoEnum(Name = "rewarded", Value = 2)]
		rewarded,
		[ProtoEnum(Name = "notreward", Value = 3)]
		notreward
	}
}