blob: 34cef464269e622d5259af3b468dc233c8ca4ea9 (
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 = "FriendGiftReceive")]
public enum FriendGiftReceive
{
[ProtoEnum(Name = "FriendGift_ReceiveNone", Value = 0)]
FriendGift_ReceiveNone,
[ProtoEnum(Name = "FriendGift_Received", Value = 1)]
FriendGift_Received,
[ProtoEnum(Name = "FriendGift_ReceiveTaken", Value = 2)]
FriendGift_ReceiveTaken
}
}
|