summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/InvFightReqType.cs
blob: 11c7a0eae9fd7cad7941418225981c74f116988b (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 = "InvFightReqType")]
	public enum InvFightReqType
	{
		[ProtoEnum(Name = "IFRT_INV_ONE", Value = 1)]
		IFRT_INV_ONE = 1,
		[ProtoEnum(Name = "IFRT_REFUSH_ONE", Value = 2)]
		IFRT_REFUSH_ONE,
		[ProtoEnum(Name = "IFRT_IGNORE_ALL", Value = 3)]
		IFRT_IGNORE_ALL,
		[ProtoEnum(Name = "IFRT_REQ_LIST", Value = 4)]
		IFRT_REQ_LIST,
		[ProtoEnum(Name = "IFRT_ACCEPT_ONE", Value = 5)]
		IFRT_ACCEPT_ONE
	}
}