blob: 95fdc8248c060b50e77e16068d8de9a558a5c596 (
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 = "StopMatchReason")]
public enum StopMatchReason
{
[ProtoEnum(Name = "STOPMATCH_NONE", Value = 1)]
STOPMATCH_NONE = 1,
[ProtoEnum(Name = "STOPMATCH_LEAVESCENE", Value = 2)]
STOPMATCH_LEAVESCENE,
[ProtoEnum(Name = "STOPMATCH_ENTER_TIANTI", Value = 3)]
STOPMATCH_ENTER_TIANTI,
[ProtoEnum(Name = "STOPMATCH_ENTER_BOWEIDUIZ", Value = 4)]
STOPMATCH_ENTER_BOWEIDUIZ
}
}
|