blob: 2f0a5c5c81771da4052aee814d70dd6e393997ab (
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 = "EmblemSlotType")]
public enum EmblemSlotType
{
[ProtoEnum(Name = "EmblemSlotType_None", Value = 0)]
EmblemSlotType_None,
[ProtoEnum(Name = "EmblemSlotType_Attri", Value = 1)]
EmblemSlotType_Attri,
[ProtoEnum(Name = "EmblemSlotType_Skill", Value = 2)]
EmblemSlotType_Skill,
[ProtoEnum(Name = "EmblemSlotType_ExtraSkill", Value = 3)]
EmblemSlotType_ExtraSkill
}
}
|