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