blob: 31c87fc683cabcf1daada88496f8dffdfffb5be3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System;
using ProtoBuf;
namespace KKSG
{
[ProtoContract(Name = "GMFReadyType")]
public enum GMFReadyType
{
[ProtoEnum(Name = "GMF_READY_UP", Value = 1)]
GMF_READY_UP = 1,
[ProtoEnum(Name = "GMF_READY_DOWN", Value = 2)]
GMF_READY_DOWN,
[ProtoEnum(Name = "GMF_READY_KICK", Value = 3)]
GMF_READY_KICK
}
}
|