summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/FriendGiftReceive.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/FriendGiftReceive.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/KKSG/FriendGiftReceive.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/FriendGiftReceive.cs b/Client/Assets/Scripts/XMainClient/KKSG/FriendGiftReceive.cs
new file mode 100644
index 00000000..34cef464
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/KKSG/FriendGiftReceive.cs
@@ -0,0 +1,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
+ }
+}