blob: 094d4035f074d2fdf9dd6aeb299812a0c99fa75d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System;
using ProtoBuf;
namespace KKSG
{
[ProtoContract(Name = "CustomBattleType")]
public enum CustomBattleType
{
[ProtoEnum(Name = "CustomBattle_PK_Normal", Value = 1)]
CustomBattle_PK_Normal = 1,
[ProtoEnum(Name = "CustomBattle_PKTwo_Normal", Value = 2)]
CustomBattle_PKTwo_Normal
}
}
|