blob: ab3e132f38146cb990c8afa82a8e86fc5a9a56e2 (
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 = "Festival520Type")]
public enum Festival520Type
{
[ProtoEnum(Name = "Festival520_NormalDonate", Value = 1)]
Festival520_NormalDonate = 1,
[ProtoEnum(Name = "Festival520_PreciousDonate", Value = 2)]
Festival520_PreciousDonate,
[ProtoEnum(Name = "Festival520_GetPrize", Value = 3)]
Festival520_GetPrize,
[ProtoEnum(Name = "Festival520_GetInfo", Value = 4)]
Festival520_GetInfo
}
}
|