blob: b92b21a1783b6c35ca99145b6847578c1defaa68 (
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 = "CustomBattleTag")]
public enum CustomBattleTag
{
[ProtoEnum(Name = "CustomBattle_Tag_Friend", Value = 1)]
CustomBattle_Tag_Friend = 1,
[ProtoEnum(Name = "CustomBattle_Tag_Guild", Value = 2)]
CustomBattle_Tag_Guild,
[ProtoEnum(Name = "CustomBattle_Tag_Cross", Value = 3)]
CustomBattle_Tag_Cross,
[ProtoEnum(Name = "CustomBattle_Tag_GM", Value = 4)]
CustomBattle_Tag_GM
}
}
|