blob: a33631ff15edbeabf73381d58538d8cce83696db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using System;
using ProtoBuf;
namespace KKSG
{
[ProtoContract(Name = "SkyCityTimeType")]
public enum SkyCityTimeType
{
[ProtoEnum(Name = "Waiting", Value = 1)]
Waiting = 1,
[ProtoEnum(Name = "Race", Value = 2)]
Race,
[ProtoEnum(Name = "MidleEndInRest", Value = 3)]
MidleEndInRest,
[ProtoEnum(Name = "FirstWaiting", Value = 4)]
FirstWaiting,
[ProtoEnum(Name = "SecondWaiting", Value = 5)]
SecondWaiting,
[ProtoEnum(Name = "SC_NONE", Value = 6)]
SC_NONE
}
}
|