blob: f2b2bf0aac93d67c13860b4892567f8afcc3a258 (
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 = "MythShopOP")]
public enum MythShopOP
{
[ProtoEnum(Name = "MythShopQuery", Value = 1)]
MythShopQuery = 1,
[ProtoEnum(Name = "MythShopBuy", Value = 2)]
MythShopBuy,
[ProtoEnum(Name = "MythShopRefresh", Value = 3)]
MythShopRefresh
}
}
|