blob: fb03496ca3c0411fe2b2064d8f5e36e3200443ca (
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 = "CustomBattleScale")]
public enum CustomBattleScale
{
[ProtoEnum(Name = "CustomBattle_Scale_Friend", Value = 1)]
CustomBattle_Scale_Friend = 1,
[ProtoEnum(Name = "CustomBattle_Scale_Guild", Value = 2)]
CustomBattle_Scale_Guild,
[ProtoEnum(Name = "CustomBattle_Scale_Server", Value = 3)]
CustomBattle_Scale_Server,
[ProtoEnum(Name = "CustomBattle_Scale_All", Value = 4)]
CustomBattle_Scale_All
}
}
|