blob: a34cd4ef73bcdee95ce3246f18596fca65abb500 (
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 = "DEProgressState")]
public enum DEProgressState
{
[ProtoEnum(Name = "DEPS_FINISH", Value = 1)]
DEPS_FINISH = 1,
[ProtoEnum(Name = "DEPS_FIGHT", Value = 2)]
DEPS_FIGHT,
[ProtoEnum(Name = "DEPS_NOTOPEN", Value = 3)]
DEPS_NOTOPEN
}
}
|