blob: c7c26e89b51ccdd52c8de31549c965502029e5cc (
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 = "GuildAuctResultType")]
public enum GuildAuctResultType
{
[ProtoEnum(Name = "GA_RESULT_BUY_NOW", Value = 1)]
GA_RESULT_BUY_NOW = 1,
[ProtoEnum(Name = "GA_RESULT_BUY_AUCT", Value = 2)]
GA_RESULT_BUY_AUCT,
[ProtoEnum(Name = "GA_RESULT_TO_WORLD", Value = 3)]
GA_RESULT_TO_WORLD
}
}
|