blob: 96b0841599e02a1b0daff392ab0cacdd1fa743f9 (
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 = "SkyCraftMatchNtfType")]
public enum SkyCraftMatchNtfType
{
[ProtoEnum(Name = "SCMN_Start", Value = 1)]
SCMN_Start = 1,
[ProtoEnum(Name = "SCMN_Stop", Value = 2)]
SCMN_Stop,
[ProtoEnum(Name = "SCMN_Timeout", Value = 3)]
SCMN_Timeout
}
}
|