blob: bb738741be9cfa1493918043ecf4ecaa22e16d11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System;
using ProtoBuf;
namespace KKSG
{
[ProtoContract(Name = "RoleEventType")]
public enum RoleEventType
{
[ProtoEnum(Name = "OnSendFriendGift", Value = 1)]
OnSendFriendGift = 1
}
}
|