blob: c8f0421f664c576319e4c738818091cb13275b3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System;
using ProtoBuf;
namespace KKSG
{
[ProtoContract(Name = "CrossGvgOperType")]
public enum CrossGvgOperType
{
[ProtoEnum(Name = "CGOT_EnterPointRace", Value = 1)]
CGOT_EnterPointRace = 1,
[ProtoEnum(Name = "CGOT_EnterKnockout", Value = 2)]
CGOT_EnterKnockout,
[ProtoEnum(Name = "CGOT_SupportGuild", Value = 3)]
CGOT_SupportGuild,
[ProtoEnum(Name = "CGOT_LeaveUI", Value = 4)]
CGOT_LeaveUI
}
}
|