blob: e10cbb71f5c63cc926915b9182255237e8c7f34b (
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 = "LeaveTeamType")]
public enum LeaveTeamType
{
[ProtoEnum(Name = "LTT_BY_SELF", Value = 0)]
LTT_BY_SELF,
[ProtoEnum(Name = "LTT_KICK", Value = 1)]
LTT_KICK,
[ProtoEnum(Name = "LTT_DEL_ROBOT", Value = 2)]
LTT_DEL_ROBOT,
[ProtoEnum(Name = "LTT_MS_CRASH", Value = 3)]
LTT_MS_CRASH,
[ProtoEnum(Name = "LLT_LEADER_TIMEOVER", Value = 4)]
LLT_LEADER_TIMEOVER
}
}
|