blob: bc1d7ea5fac6a7410bd6627fc64f5f7a8cb8c917 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System;
using ProtoBuf;
namespace KKSG
{
[ProtoContract(Name = "ResetType")]
public enum ResetType
{
[ProtoEnum(Name = "RESET_SKILL", Value = 0)]
RESET_SKILL,
[ProtoEnum(Name = "RESET_PROFESSION", Value = 1)]
RESET_PROFESSION,
[ProtoEnum(Name = "RESET_GUILD_SKILL", Value = 2)]
RESET_GUILD_SKILL
}
}
|