summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/RiskBoxState.cs
blob: 34bfb56895b0c039d0d80fae4d20a7d963d67bb2 (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 = "RiskBoxState")]
	public enum RiskBoxState
	{
		[ProtoEnum(Name = "RISK_BOX_LOCKED", Value = 1)]
		RISK_BOX_LOCKED = 1,
		[ProtoEnum(Name = "RISK_BOX_UNLOCKED", Value = 2)]
		RISK_BOX_UNLOCKED,
		[ProtoEnum(Name = "RISK_BOX_CANGETREWARD", Value = 3)]
		RISK_BOX_CANGETREWARD,
		[ProtoEnum(Name = "RISK_BOX_GETREWARD", Value = 4)]
		RISK_BOX_GETREWARD,
		[ProtoEnum(Name = "RISK_BOX_DELETE", Value = 5)]
		RISK_BOX_DELETE
	}
}