blob: 7ead53fa5916d407ee864e654fde8545d879183a (
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 = "CarrerDataType")]
public enum CarrerDataType
{
[ProtoEnum(Name = "CARRER_DATA_LEVEL", Value = 1)]
CARRER_DATA_LEVEL = 1,
[ProtoEnum(Name = "CARRER_DATA_NEST", Value = 2)]
CARRER_DATA_NEST,
[ProtoEnum(Name = "CARRER_DATA_DRAGON", Value = 3)]
CARRER_DATA_DRAGON,
[ProtoEnum(Name = "CARRER_DATA_CREATEROLE", Value = 4)]
CARRER_DATA_CREATEROLE
}
}
|