summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/PetOP.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/PetOP.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/KKSG/PetOP.cs38
1 files changed, 38 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/PetOP.cs b/Client/Assets/Scripts/XMainClient/KKSG/PetOP.cs
new file mode 100644
index 00000000..2b7fa7a6
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/KKSG/PetOP.cs
@@ -0,0 +1,38 @@
+using System;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "PetOP")]
+ public enum PetOP
+ {
+ [ProtoEnum(Name = "PetFellow", Value = 1)]
+ PetFellow = 1,
+ [ProtoEnum(Name = "PetFight", Value = 2)]
+ PetFight,
+ [ProtoEnum(Name = "PetFeed", Value = 3)]
+ PetFeed,
+ [ProtoEnum(Name = "PetTouch", Value = 4)]
+ PetTouch,
+ [ProtoEnum(Name = "PetBorn", Value = 5)]
+ PetBorn,
+ [ProtoEnum(Name = "PetUpdate", Value = 6)]
+ PetUpdate,
+ [ProtoEnum(Name = "PetRelease", Value = 7)]
+ PetRelease,
+ [ProtoEnum(Name = "ExpandSeat", Value = 8)]
+ ExpandSeat,
+ [ProtoEnum(Name = "PetExpTransfer", Value = 9)]
+ PetExpTransfer,
+ [ProtoEnum(Name = "useskillbook", Value = 10)]
+ useskillbook,
+ [ProtoEnum(Name = "SetPetPairRide", Value = 11)]
+ SetPetPairRide,
+ [ProtoEnum(Name = "QueryPetPairRideInvite", Value = 12)]
+ QueryPetPairRideInvite,
+ [ProtoEnum(Name = "OffPetPairRide", Value = 13)]
+ OffPetPairRide,
+ [ProtoEnum(Name = "IgnorePetPairRideInvite", Value = 14)]
+ IgnorePetPairRideInvite
+ }
+}