blob: 951fa508019f9c9d3c7aee543f5e6abf029a1dff (
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 = "ArenaStarType")]
public enum ArenaStarType
{
[ProtoEnum(Name = "AST_PK", Value = 1)]
AST_PK = 1,
[ProtoEnum(Name = "AST_HEROBATTLE", Value = 2)]
AST_HEROBATTLE,
[ProtoEnum(Name = "AST_WEEKNEST", Value = 3)]
AST_WEEKNEST,
[ProtoEnum(Name = "AST_LEAGUE", Value = 4)]
AST_LEAGUE
}
}
|