blob: 1843efa3d8be635890a9f9f12773c0be0695879c (
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 = "LoginRewardState")]
public enum LoginRewardState
{
[ProtoEnum(Name = "LOGINRS_CANNOT", Value = 1)]
LOGINRS_CANNOT = 1,
[ProtoEnum(Name = "LOGINRS_HAVEHOT", Value = 2)]
LOGINRS_HAVEHOT,
[ProtoEnum(Name = "LOGINRS_HAVE", Value = 3)]
LOGINRS_HAVE
}
}
|