diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/FriendGiftSend.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/FriendGiftSend.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/FriendGiftSend.cs b/Client/Assets/Scripts/XMainClient/KKSG/FriendGiftSend.cs new file mode 100644 index 00000000..cc75d1dc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/FriendGiftSend.cs @@ -0,0 +1,14 @@ +using System;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "FriendGiftSend")]
+ public enum FriendGiftSend
+ {
+ [ProtoEnum(Name = "FriendGift_SendNone", Value = 0)]
+ FriendGift_SendNone,
+ [ProtoEnum(Name = "FriendGift_Sended", Value = 1)]
+ FriendGift_Sended
+ }
+}
|