diff options
author | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
commit | 6eb915c129fc90c6f4c82ae097dd6ffad5239efc (patch) | |
tree | 7dd2be50edf41f36b60fac84696e731c13afe617 /Client/Assets/Scripts/XMainClient/KKSG/PetOP.cs |
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/PetOP.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/PetOP.cs | 38 |
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
+ }
+}
|