blob: 3e20a46be8921cdb93fd2cf078db57c884f29f8f (
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 = "DragonWeakType")]
public enum DragonWeakType
{
[ProtoEnum(Name = "DragonWeakType_Null", Value = 1)]
DragonWeakType_Null = 1,
[ProtoEnum(Name = "DragonWeakType_Pass", Value = 2)]
DragonWeakType_Pass,
[ProtoEnum(Name = "DragonWeakType_NotPass", Value = 3)]
DragonWeakType_NotPass,
[ProtoEnum(Name = "DragonWeakType_Max", Value = 4)]
DragonWeakType_Max
}
}
|