diff --git a/src/server/msg/Gameapi.pb.go b/src/server/msg/Gameapi.pb.go index bdcdc034..204a295f 100644 --- a/src/server/msg/Gameapi.pb.go +++ b/src/server/msg/Gameapi.pb.go @@ -7,12 +7,11 @@ package msg import ( + protoreflect "google.golang.org/protobuf/reflect/protoreflect" + protoimpl "google.golang.org/protobuf/runtime/protoimpl" reflect "reflect" sync "sync" unsafe "unsafe" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" ) const ( @@ -1136,6 +1135,52 @@ func (FRIEND_REPLY_TYPE) EnumDescriptor() ([]byte, []int) { return file_proto_Gameapi_proto_rawDescGZIP(), []int{12} } +type FRIEND_REPLY_HANDLE_ERR_TYPE int32 + +const ( + FRIEND_REPLY_HANDLE_ERR_TYPE_NONE FRIEND_REPLY_HANDLE_ERR_TYPE = 0 // 默认 + FRIEND_REPLY_HANDLE_ERR_TYPE_CATNIP FRIEND_REPLY_HANDLE_ERR_TYPE = 1 // 好友位置已满不存在 +) + +// Enum value maps for FRIEND_REPLY_HANDLE_ERR_TYPE. +var ( + FRIEND_REPLY_HANDLE_ERR_TYPE_name = map[int32]string{ + 0: "NONE", + 1: "CATNIP", + } + FRIEND_REPLY_HANDLE_ERR_TYPE_value = map[string]int32{ + "NONE": 0, + "CATNIP": 1, + } +) + +func (x FRIEND_REPLY_HANDLE_ERR_TYPE) Enum() *FRIEND_REPLY_HANDLE_ERR_TYPE { + p := new(FRIEND_REPLY_HANDLE_ERR_TYPE) + *p = x + return p +} + +func (x FRIEND_REPLY_HANDLE_ERR_TYPE) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (FRIEND_REPLY_HANDLE_ERR_TYPE) Descriptor() protoreflect.EnumDescriptor { + return file_proto_Gameapi_proto_enumTypes[13].Descriptor() +} + +func (FRIEND_REPLY_HANDLE_ERR_TYPE) Type() protoreflect.EnumType { + return &file_proto_Gameapi_proto_enumTypes[13] +} + +func (x FRIEND_REPLY_HANDLE_ERR_TYPE) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use FRIEND_REPLY_HANDLE_ERR_TYPE.Descriptor instead. +func (FRIEND_REPLY_HANDLE_ERR_TYPE) EnumDescriptor() ([]byte, []int) { + return file_proto_Gameapi_proto_rawDescGZIP(), []int{13} +} + type ClientReq struct { state protoimpl.MessageState `protogen:"open.v1"` Func string `protobuf:"bytes,1,opt,name=func,proto3" json:"func,omitempty"` // serverMode/functionID @@ -13263,10 +13308,7 @@ type ResFriendPlayerSimple struct { Friend []int32 `protobuf:"varint,15,rep,packed,name=Friend,proto3" json:"Friend,omitempty"` // 好友列表 Last *ActLog `protobuf:"bytes,16,opt,name=Last,proto3" json:"Last,omitempty"` // 最后一次动态 Physiology map[int32]int32 `protobuf:"bytes,17,rep,name=Physiology,proto3" json:"Physiology,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` // 生理状态 位置 =》 状态 -<<<<<<< HEAD -======= PetName string `protobuf:"bytes,18,opt,name=PetName,proto3" json:"PetName,omitempty"` //宠物名字; ->>>>>>> sdk unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -13420,6 +13462,13 @@ func (x *ResFriendPlayerSimple) GetPhysiology() map[int32]int32 { return nil } +func (x *ResFriendPlayerSimple) GetPetName() string { + if x != nil { + return x.PetName + } + return "" +} + type ResPlayerSimple struct { state protoimpl.MessageState `protogen:"open.v1"` Uid int64 `protobuf:"varint,1,opt,name=Uid,proto3" json:"Uid,omitempty"` @@ -15313,19 +15362,12 @@ func (x *ReqFriendReplyHandle) GetType() int32 { } type ResFriendReplyHandle struct { -<<<<<<< HEAD - state protoimpl.MessageState `protogen:"open.v1"` - Code RES_CODE `protobuf:"varint,1,opt,name=Code,proto3,enum=tutorial.RES_CODE" json:"Code,omitempty"` - Msg string `protobuf:"bytes,2,opt,name=Msg,proto3" json:"Msg,omitempty"` - LogId int32 `protobuf:"varint,3,opt,name=LogId,proto3" json:"LogId,omitempty"` // 时间线id -======= state protoimpl.MessageState `protogen:"open.v1"` Code RES_CODE `protobuf:"varint,1,opt,name=Code,proto3,enum=tutorial.RES_CODE" json:"Code,omitempty"` Msg string `protobuf:"bytes,2,opt,name=Msg,proto3" json:"Msg,omitempty"` LogId int32 `protobuf:"varint,3,opt,name=LogId,proto3" json:"LogId,omitempty"` // 时间线id Type int32 `protobuf:"varint,4,opt,name=Type,proto3" json:"Type,omitempty"` // 回复类型 1:处理 2:删除 3:查看; ErrType FRIEND_REPLY_HANDLE_ERR_TYPE `protobuf:"varint,5,opt,name=ErrType,proto3,enum=tutorial.FRIEND_REPLY_HANDLE_ERR_TYPE" json:"ErrType,omitempty"` // 错误类型; ->>>>>>> sdk unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } @@ -15381,6 +15423,20 @@ func (x *ResFriendReplyHandle) GetLogId() int32 { return 0 } +func (x *ResFriendReplyHandle) GetType() int32 { + if x != nil { + return x.Type + } + return 0 +} + +func (x *ResFriendReplyHandle) GetErrType() FRIEND_REPLY_HANDLE_ERR_TYPE { + if x != nil { + return x.ErrType + } + return FRIEND_REPLY_HANDLE_ERR_TYPE_NONE +} + type ResFriendBubble struct { state protoimpl.MessageState `protogen:"open.v1"` Bubble []*FriendBubbleInfo `protobuf:"bytes,1,rep,name=Bubble,proto3" json:"Bubble,omitempty"` // 气泡 @@ -15638,7 +15694,7 @@ func (x *ResFriendTReward) GetId() int32 { type ResFriendApplyNotify struct { state protoimpl.MessageState `protogen:"open.v1"` Player *ResPlayerSimple `protobuf:"bytes,1,opt,name=Player,proto3" json:"Player,omitempty"` - Type int32 `protobuf:"varint,2,opt,name=Type,proto3" json:"Type,omitempty"` // 1:申请 2:同意 3:拒绝 4:删除 + Type int32 `protobuf:"varint,2,opt,name=Type,proto3" json:"Type,omitempty"` // 1:申请 2:同意 3:拒绝 4:删除; Time int32 `protobuf:"varint,3,opt,name=Time,proto3" json:"Time,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache @@ -15695,8 +15751,6 @@ func (x *ResFriendApplyNotify) GetTime() int32 { return 0 } -<<<<<<< HEAD -======= type ResFriendReplyNotify struct { state protoimpl.MessageState `protogen:"open.v1"` Info *ResFriendReply `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"` @@ -15757,7 +15811,6 @@ func (x *ResFriendReplyNotify) GetTime() int32 { return 0 } ->>>>>>> sdk // 申请好友 type ReqApplyFriend struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -15769,7 +15822,7 @@ type ReqApplyFriend struct { func (x *ReqApplyFriend) Reset() { *x = ReqApplyFriend{} - mi := &file_proto_Gameapi_proto_msgTypes[259] + mi := &file_proto_Gameapi_proto_msgTypes[260] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15781,7 +15834,7 @@ func (x *ReqApplyFriend) String() string { func (*ReqApplyFriend) ProtoMessage() {} func (x *ReqApplyFriend) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[259] + mi := &file_proto_Gameapi_proto_msgTypes[260] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15794,7 +15847,7 @@ func (x *ReqApplyFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqApplyFriend.ProtoReflect.Descriptor instead. func (*ReqApplyFriend) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{259} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{260} } func (x *ReqApplyFriend) GetUid() int64 { @@ -15822,7 +15875,7 @@ type ResApplyFriend struct { func (x *ResApplyFriend) Reset() { *x = ResApplyFriend{} - mi := &file_proto_Gameapi_proto_msgTypes[260] + mi := &file_proto_Gameapi_proto_msgTypes[261] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15834,7 +15887,7 @@ func (x *ResApplyFriend) String() string { func (*ResApplyFriend) ProtoMessage() {} func (x *ResApplyFriend) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[260] + mi := &file_proto_Gameapi_proto_msgTypes[261] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15847,7 +15900,7 @@ func (x *ResApplyFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use ResApplyFriend.ProtoReflect.Descriptor instead. func (*ResApplyFriend) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{260} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{261} } func (x *ResApplyFriend) GetCode() RES_CODE { @@ -15881,7 +15934,7 @@ type ReqAgreeFriend struct { func (x *ReqAgreeFriend) Reset() { *x = ReqAgreeFriend{} - mi := &file_proto_Gameapi_proto_msgTypes[261] + mi := &file_proto_Gameapi_proto_msgTypes[262] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15893,7 +15946,7 @@ func (x *ReqAgreeFriend) String() string { func (*ReqAgreeFriend) ProtoMessage() {} func (x *ReqAgreeFriend) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[261] + mi := &file_proto_Gameapi_proto_msgTypes[262] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15906,7 +15959,7 @@ func (x *ReqAgreeFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAgreeFriend.ProtoReflect.Descriptor instead. func (*ReqAgreeFriend) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{261} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{262} } func (x *ReqAgreeFriend) GetUid() int64 { @@ -15928,7 +15981,7 @@ type ResAgreeFriend struct { func (x *ResAgreeFriend) Reset() { *x = ResAgreeFriend{} - mi := &file_proto_Gameapi_proto_msgTypes[262] + mi := &file_proto_Gameapi_proto_msgTypes[263] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15940,7 +15993,7 @@ func (x *ResAgreeFriend) String() string { func (*ResAgreeFriend) ProtoMessage() {} func (x *ResAgreeFriend) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[262] + mi := &file_proto_Gameapi_proto_msgTypes[263] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15953,7 +16006,7 @@ func (x *ResAgreeFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use ResAgreeFriend.ProtoReflect.Descriptor instead. func (*ResAgreeFriend) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{262} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{263} } func (x *ResAgreeFriend) GetCode() RES_CODE { @@ -15994,7 +16047,7 @@ type ReqRefuseFriend struct { func (x *ReqRefuseFriend) Reset() { *x = ReqRefuseFriend{} - mi := &file_proto_Gameapi_proto_msgTypes[263] + mi := &file_proto_Gameapi_proto_msgTypes[264] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16006,7 +16059,7 @@ func (x *ReqRefuseFriend) String() string { func (*ReqRefuseFriend) ProtoMessage() {} func (x *ReqRefuseFriend) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[263] + mi := &file_proto_Gameapi_proto_msgTypes[264] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16019,7 +16072,7 @@ func (x *ReqRefuseFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqRefuseFriend.ProtoReflect.Descriptor instead. func (*ReqRefuseFriend) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{263} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{264} } func (x *ReqRefuseFriend) GetUid() int64 { @@ -16040,7 +16093,7 @@ type ResRefuseFriend struct { func (x *ResRefuseFriend) Reset() { *x = ResRefuseFriend{} - mi := &file_proto_Gameapi_proto_msgTypes[264] + mi := &file_proto_Gameapi_proto_msgTypes[265] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16052,7 +16105,7 @@ func (x *ResRefuseFriend) String() string { func (*ResRefuseFriend) ProtoMessage() {} func (x *ResRefuseFriend) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[264] + mi := &file_proto_Gameapi_proto_msgTypes[265] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16065,7 +16118,7 @@ func (x *ResRefuseFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use ResRefuseFriend.ProtoReflect.Descriptor instead. func (*ResRefuseFriend) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{264} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{265} } func (x *ResRefuseFriend) GetCode() RES_CODE { @@ -16099,7 +16152,7 @@ type ReqDelFriend struct { func (x *ReqDelFriend) Reset() { *x = ReqDelFriend{} - mi := &file_proto_Gameapi_proto_msgTypes[265] + mi := &file_proto_Gameapi_proto_msgTypes[266] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16111,7 +16164,7 @@ func (x *ReqDelFriend) String() string { func (*ReqDelFriend) ProtoMessage() {} func (x *ReqDelFriend) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[265] + mi := &file_proto_Gameapi_proto_msgTypes[266] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16124,7 +16177,7 @@ func (x *ReqDelFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqDelFriend.ProtoReflect.Descriptor instead. func (*ReqDelFriend) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{265} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{266} } func (x *ReqDelFriend) GetUid() int64 { @@ -16145,7 +16198,7 @@ type ResDelFriend struct { func (x *ResDelFriend) Reset() { *x = ResDelFriend{} - mi := &file_proto_Gameapi_proto_msgTypes[266] + mi := &file_proto_Gameapi_proto_msgTypes[267] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16157,7 +16210,7 @@ func (x *ResDelFriend) String() string { func (*ResDelFriend) ProtoMessage() {} func (x *ResDelFriend) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[266] + mi := &file_proto_Gameapi_proto_msgTypes[267] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16170,7 +16223,7 @@ func (x *ResDelFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use ResDelFriend.ProtoReflect.Descriptor instead. func (*ResDelFriend) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{266} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{267} } func (x *ResDelFriend) GetCode() RES_CODE { @@ -16204,7 +16257,7 @@ type ReqRank struct { func (x *ReqRank) Reset() { *x = ReqRank{} - mi := &file_proto_Gameapi_proto_msgTypes[267] + mi := &file_proto_Gameapi_proto_msgTypes[268] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16216,7 +16269,7 @@ func (x *ReqRank) String() string { func (*ReqRank) ProtoMessage() {} func (x *ReqRank) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[267] + mi := &file_proto_Gameapi_proto_msgTypes[268] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16229,7 +16282,7 @@ func (x *ReqRank) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqRank.ProtoReflect.Descriptor instead. func (*ReqRank) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{267} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{268} } func (x *ReqRank) GetType() int32 { @@ -16251,7 +16304,7 @@ type ResRank struct { func (x *ResRank) Reset() { *x = ResRank{} - mi := &file_proto_Gameapi_proto_msgTypes[268] + mi := &file_proto_Gameapi_proto_msgTypes[269] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16263,7 +16316,7 @@ func (x *ResRank) String() string { func (*ResRank) ProtoMessage() {} func (x *ResRank) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[268] + mi := &file_proto_Gameapi_proto_msgTypes[269] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16276,7 +16329,7 @@ func (x *ResRank) ProtoReflect() protoreflect.Message { // Deprecated: Use ResRank.ProtoReflect.Descriptor instead. func (*ResRank) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{268} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{269} } func (x *ResRank) GetType() int32 { @@ -16316,7 +16369,7 @@ type ReqMailList struct { func (x *ReqMailList) Reset() { *x = ReqMailList{} - mi := &file_proto_Gameapi_proto_msgTypes[269] + mi := &file_proto_Gameapi_proto_msgTypes[270] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16328,7 +16381,7 @@ func (x *ReqMailList) String() string { func (*ReqMailList) ProtoMessage() {} func (x *ReqMailList) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[269] + mi := &file_proto_Gameapi_proto_msgTypes[270] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16341,7 +16394,7 @@ func (x *ReqMailList) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqMailList.ProtoReflect.Descriptor instead. func (*ReqMailList) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{269} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{270} } type ResMailList struct { @@ -16353,7 +16406,7 @@ type ResMailList struct { func (x *ResMailList) Reset() { *x = ResMailList{} - mi := &file_proto_Gameapi_proto_msgTypes[270] + mi := &file_proto_Gameapi_proto_msgTypes[271] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16365,7 +16418,7 @@ func (x *ResMailList) String() string { func (*ResMailList) ProtoMessage() {} func (x *ResMailList) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[270] + mi := &file_proto_Gameapi_proto_msgTypes[271] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16378,7 +16431,7 @@ func (x *ResMailList) ProtoReflect() protoreflect.Message { // Deprecated: Use ResMailList.ProtoReflect.Descriptor instead. func (*ResMailList) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{270} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{271} } func (x *ResMailList) GetMailList() map[int32]*MailInfo { @@ -16410,7 +16463,7 @@ type MailInfo struct { func (x *MailInfo) Reset() { *x = MailInfo{} - mi := &file_proto_Gameapi_proto_msgTypes[271] + mi := &file_proto_Gameapi_proto_msgTypes[272] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16422,7 +16475,7 @@ func (x *MailInfo) String() string { func (*MailInfo) ProtoMessage() {} func (x *MailInfo) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[271] + mi := &file_proto_Gameapi_proto_msgTypes[272] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16435,7 +16488,7 @@ func (x *MailInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use MailInfo.ProtoReflect.Descriptor instead. func (*MailInfo) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{271} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{272} } func (x *MailInfo) GetId() int32 { @@ -16545,7 +16598,7 @@ type MailNotify struct { func (x *MailNotify) Reset() { *x = MailNotify{} - mi := &file_proto_Gameapi_proto_msgTypes[272] + mi := &file_proto_Gameapi_proto_msgTypes[273] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16557,7 +16610,7 @@ func (x *MailNotify) String() string { func (*MailNotify) ProtoMessage() {} func (x *MailNotify) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[272] + mi := &file_proto_Gameapi_proto_msgTypes[273] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16570,7 +16623,7 @@ func (x *MailNotify) ProtoReflect() protoreflect.Message { // Deprecated: Use MailNotify.ProtoReflect.Descriptor instead. func (*MailNotify) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{272} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{273} } func (x *MailNotify) GetInfo() *MailInfo { @@ -16590,7 +16643,7 @@ type ReqReadMail struct { func (x *ReqReadMail) Reset() { *x = ReqReadMail{} - mi := &file_proto_Gameapi_proto_msgTypes[273] + mi := &file_proto_Gameapi_proto_msgTypes[274] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16602,7 +16655,7 @@ func (x *ReqReadMail) String() string { func (*ReqReadMail) ProtoMessage() {} func (x *ReqReadMail) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[273] + mi := &file_proto_Gameapi_proto_msgTypes[274] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16615,7 +16668,7 @@ func (x *ReqReadMail) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqReadMail.ProtoReflect.Descriptor instead. func (*ReqReadMail) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{273} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{274} } func (x *ReqReadMail) GetId() int32 { @@ -16636,7 +16689,7 @@ type ResReadMail struct { func (x *ResReadMail) Reset() { *x = ResReadMail{} - mi := &file_proto_Gameapi_proto_msgTypes[274] + mi := &file_proto_Gameapi_proto_msgTypes[275] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16648,7 +16701,7 @@ func (x *ResReadMail) String() string { func (*ResReadMail) ProtoMessage() {} func (x *ResReadMail) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[274] + mi := &file_proto_Gameapi_proto_msgTypes[275] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16661,7 +16714,7 @@ func (x *ResReadMail) ProtoReflect() protoreflect.Message { // Deprecated: Use ResReadMail.ProtoReflect.Descriptor instead. func (*ResReadMail) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{274} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{275} } func (x *ResReadMail) GetCode() RES_CODE { @@ -16695,7 +16748,7 @@ type ReqGetMailReward struct { func (x *ReqGetMailReward) Reset() { *x = ReqGetMailReward{} - mi := &file_proto_Gameapi_proto_msgTypes[275] + mi := &file_proto_Gameapi_proto_msgTypes[276] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16707,7 +16760,7 @@ func (x *ReqGetMailReward) String() string { func (*ReqGetMailReward) ProtoMessage() {} func (x *ReqGetMailReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[275] + mi := &file_proto_Gameapi_proto_msgTypes[276] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16720,7 +16773,7 @@ func (x *ReqGetMailReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGetMailReward.ProtoReflect.Descriptor instead. func (*ReqGetMailReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{275} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{276} } func (x *ReqGetMailReward) GetId() int32 { @@ -16741,7 +16794,7 @@ type ResGetMailReward struct { func (x *ResGetMailReward) Reset() { *x = ResGetMailReward{} - mi := &file_proto_Gameapi_proto_msgTypes[276] + mi := &file_proto_Gameapi_proto_msgTypes[277] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16753,7 +16806,7 @@ func (x *ResGetMailReward) String() string { func (*ResGetMailReward) ProtoMessage() {} func (x *ResGetMailReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[276] + mi := &file_proto_Gameapi_proto_msgTypes[277] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16766,7 +16819,7 @@ func (x *ResGetMailReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGetMailReward.ProtoReflect.Descriptor instead. func (*ResGetMailReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{276} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{277} } func (x *ResGetMailReward) GetCode() RES_CODE { @@ -16800,7 +16853,7 @@ type ReqDeleteMail struct { func (x *ReqDeleteMail) Reset() { *x = ReqDeleteMail{} - mi := &file_proto_Gameapi_proto_msgTypes[277] + mi := &file_proto_Gameapi_proto_msgTypes[278] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16812,7 +16865,7 @@ func (x *ReqDeleteMail) String() string { func (*ReqDeleteMail) ProtoMessage() {} func (x *ReqDeleteMail) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[277] + mi := &file_proto_Gameapi_proto_msgTypes[278] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16825,7 +16878,7 @@ func (x *ReqDeleteMail) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqDeleteMail.ProtoReflect.Descriptor instead. func (*ReqDeleteMail) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{277} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{278} } func (x *ReqDeleteMail) GetId() int32 { @@ -16846,7 +16899,7 @@ type ResDeleteMail struct { func (x *ResDeleteMail) Reset() { *x = ResDeleteMail{} - mi := &file_proto_Gameapi_proto_msgTypes[278] + mi := &file_proto_Gameapi_proto_msgTypes[279] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16858,7 +16911,7 @@ func (x *ResDeleteMail) String() string { func (*ResDeleteMail) ProtoMessage() {} func (x *ResDeleteMail) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[278] + mi := &file_proto_Gameapi_proto_msgTypes[279] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16871,7 +16924,7 @@ func (x *ResDeleteMail) ProtoReflect() protoreflect.Message { // Deprecated: Use ResDeleteMail.ProtoReflect.Descriptor instead. func (*ResDeleteMail) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{278} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{279} } func (x *ResDeleteMail) GetCode() RES_CODE { @@ -16920,7 +16973,7 @@ type ResCharge struct { func (x *ResCharge) Reset() { *x = ResCharge{} - mi := &file_proto_Gameapi_proto_msgTypes[279] + mi := &file_proto_Gameapi_proto_msgTypes[280] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16932,7 +16985,7 @@ func (x *ResCharge) String() string { func (*ResCharge) ProtoMessage() {} func (x *ResCharge) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[279] + mi := &file_proto_Gameapi_proto_msgTypes[280] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16945,7 +16998,7 @@ func (x *ResCharge) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCharge.ProtoReflect.Descriptor instead. func (*ResCharge) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{279} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{280} } func (x *ResCharge) GetCharge() float32 { @@ -17077,7 +17130,7 @@ type LogoutPetWork struct { func (x *LogoutPetWork) Reset() { *x = LogoutPetWork{} - mi := &file_proto_Gameapi_proto_msgTypes[280] + mi := &file_proto_Gameapi_proto_msgTypes[281] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17089,7 +17142,7 @@ func (x *LogoutPetWork) String() string { func (*LogoutPetWork) ProtoMessage() {} func (x *LogoutPetWork) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[280] + mi := &file_proto_Gameapi_proto_msgTypes[281] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17102,7 +17155,7 @@ func (x *LogoutPetWork) ProtoReflect() protoreflect.Message { // Deprecated: Use LogoutPetWork.ProtoReflect.Descriptor instead. func (*LogoutPetWork) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{280} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{281} } func (x *LogoutPetWork) GetWorkTime() int64 { @@ -17130,7 +17183,7 @@ type WeeklyDiscountInfo struct { func (x *WeeklyDiscountInfo) Reset() { *x = WeeklyDiscountInfo{} - mi := &file_proto_Gameapi_proto_msgTypes[281] + mi := &file_proto_Gameapi_proto_msgTypes[282] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17142,7 +17195,7 @@ func (x *WeeklyDiscountInfo) String() string { func (*WeeklyDiscountInfo) ProtoMessage() {} func (x *WeeklyDiscountInfo) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[281] + mi := &file_proto_Gameapi_proto_msgTypes[282] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17155,7 +17208,7 @@ func (x *WeeklyDiscountInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use WeeklyDiscountInfo.ProtoReflect.Descriptor instead. func (*WeeklyDiscountInfo) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{281} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{282} } func (x *WeeklyDiscountInfo) GetId() int32 { @@ -17190,7 +17243,7 @@ type WishList struct { func (x *WishList) Reset() { *x = WishList{} - mi := &file_proto_Gameapi_proto_msgTypes[282] + mi := &file_proto_Gameapi_proto_msgTypes[283] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17202,7 +17255,7 @@ func (x *WishList) String() string { func (*WishList) ProtoMessage() {} func (x *WishList) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[282] + mi := &file_proto_Gameapi_proto_msgTypes[283] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17215,7 +17268,7 @@ func (x *WishList) ProtoReflect() protoreflect.Message { // Deprecated: Use WishList.ProtoReflect.Descriptor instead. func (*WishList) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{282} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{283} } func (x *WishList) GetId() int32 { @@ -17250,7 +17303,7 @@ type ReqAddWish struct { func (x *ReqAddWish) Reset() { *x = ReqAddWish{} - mi := &file_proto_Gameapi_proto_msgTypes[283] + mi := &file_proto_Gameapi_proto_msgTypes[284] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17262,7 +17315,7 @@ func (x *ReqAddWish) String() string { func (*ReqAddWish) ProtoMessage() {} func (x *ReqAddWish) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[283] + mi := &file_proto_Gameapi_proto_msgTypes[284] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17275,7 +17328,7 @@ func (x *ReqAddWish) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAddWish.ProtoReflect.Descriptor instead. func (*ReqAddWish) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{283} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{284} } func (x *ReqAddWish) GetId() int32 { @@ -17302,7 +17355,7 @@ type ResAddWish struct { func (x *ResAddWish) Reset() { *x = ResAddWish{} - mi := &file_proto_Gameapi_proto_msgTypes[284] + mi := &file_proto_Gameapi_proto_msgTypes[285] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17314,7 +17367,7 @@ func (x *ResAddWish) String() string { func (*ResAddWish) ProtoMessage() {} func (x *ResAddWish) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[284] + mi := &file_proto_Gameapi_proto_msgTypes[285] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17327,7 +17380,7 @@ func (x *ResAddWish) ProtoReflect() protoreflect.Message { // Deprecated: Use ResAddWish.ProtoReflect.Descriptor instead. func (*ResAddWish) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{284} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{285} } func (x *ResAddWish) GetCode() RES_CODE { @@ -17353,7 +17406,7 @@ type ReqGetWish struct { func (x *ReqGetWish) Reset() { *x = ReqGetWish{} - mi := &file_proto_Gameapi_proto_msgTypes[285] + mi := &file_proto_Gameapi_proto_msgTypes[286] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17365,7 +17418,7 @@ func (x *ReqGetWish) String() string { func (*ReqGetWish) ProtoMessage() {} func (x *ReqGetWish) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[285] + mi := &file_proto_Gameapi_proto_msgTypes[286] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17378,7 +17431,7 @@ func (x *ReqGetWish) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGetWish.ProtoReflect.Descriptor instead. func (*ReqGetWish) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{285} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{286} } type ResGetWish struct { @@ -17391,7 +17444,7 @@ type ResGetWish struct { func (x *ResGetWish) Reset() { *x = ResGetWish{} - mi := &file_proto_Gameapi_proto_msgTypes[286] + mi := &file_proto_Gameapi_proto_msgTypes[287] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17403,7 +17456,7 @@ func (x *ResGetWish) String() string { func (*ResGetWish) ProtoMessage() {} func (x *ResGetWish) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[286] + mi := &file_proto_Gameapi_proto_msgTypes[287] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17416,7 +17469,7 @@ func (x *ResGetWish) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGetWish.ProtoReflect.Descriptor instead. func (*ResGetWish) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{286} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{287} } func (x *ResGetWish) GetCode() RES_CODE { @@ -17443,7 +17496,7 @@ type ReqSendWishBeg struct { func (x *ReqSendWishBeg) Reset() { *x = ReqSendWishBeg{} - mi := &file_proto_Gameapi_proto_msgTypes[287] + mi := &file_proto_Gameapi_proto_msgTypes[288] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17455,7 +17508,7 @@ func (x *ReqSendWishBeg) String() string { func (*ReqSendWishBeg) ProtoMessage() {} func (x *ReqSendWishBeg) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[287] + mi := &file_proto_Gameapi_proto_msgTypes[288] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17468,7 +17521,7 @@ func (x *ReqSendWishBeg) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqSendWishBeg.ProtoReflect.Descriptor instead. func (*ReqSendWishBeg) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{287} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{288} } func (x *ReqSendWishBeg) GetUid() []int64 { @@ -17488,7 +17541,7 @@ type ResSendWishBeg struct { func (x *ResSendWishBeg) Reset() { *x = ResSendWishBeg{} - mi := &file_proto_Gameapi_proto_msgTypes[288] + mi := &file_proto_Gameapi_proto_msgTypes[289] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17500,7 +17553,7 @@ func (x *ResSendWishBeg) String() string { func (*ResSendWishBeg) ProtoMessage() {} func (x *ResSendWishBeg) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[288] + mi := &file_proto_Gameapi_proto_msgTypes[289] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17513,7 +17566,7 @@ func (x *ResSendWishBeg) ProtoReflect() protoreflect.Message { // Deprecated: Use ResSendWishBeg.ProtoReflect.Descriptor instead. func (*ResSendWishBeg) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{288} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{289} } func (x *ResSendWishBeg) GetCode() RES_CODE { @@ -17540,7 +17593,7 @@ type ResSpecialShop struct { func (x *ResSpecialShop) Reset() { *x = ResSpecialShop{} - mi := &file_proto_Gameapi_proto_msgTypes[289] + mi := &file_proto_Gameapi_proto_msgTypes[290] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17552,7 +17605,7 @@ func (x *ResSpecialShop) String() string { func (*ResSpecialShop) ProtoMessage() {} func (x *ResSpecialShop) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[289] + mi := &file_proto_Gameapi_proto_msgTypes[290] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17565,7 +17618,7 @@ func (x *ResSpecialShop) ProtoReflect() protoreflect.Message { // Deprecated: Use ResSpecialShop.ProtoReflect.Descriptor instead. func (*ResSpecialShop) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{289} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{290} } func (x *ResSpecialShop) GetGrade() int32 { @@ -17593,7 +17646,7 @@ type ResChessShop struct { func (x *ResChessShop) Reset() { *x = ResChessShop{} - mi := &file_proto_Gameapi_proto_msgTypes[290] + mi := &file_proto_Gameapi_proto_msgTypes[291] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17605,7 +17658,7 @@ func (x *ResChessShop) String() string { func (*ResChessShop) ProtoMessage() {} func (x *ResChessShop) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[290] + mi := &file_proto_Gameapi_proto_msgTypes[291] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17618,7 +17671,7 @@ func (x *ResChessShop) ProtoReflect() protoreflect.Message { // Deprecated: Use ResChessShop.ProtoReflect.Descriptor instead. func (*ResChessShop) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{290} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{291} } func (x *ResChessShop) GetDiamond() int32 { @@ -17650,7 +17703,7 @@ type ReqFreeShop struct { func (x *ReqFreeShop) Reset() { *x = ReqFreeShop{} - mi := &file_proto_Gameapi_proto_msgTypes[291] + mi := &file_proto_Gameapi_proto_msgTypes[292] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17662,7 +17715,7 @@ func (x *ReqFreeShop) String() string { func (*ReqFreeShop) ProtoMessage() {} func (x *ReqFreeShop) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[291] + mi := &file_proto_Gameapi_proto_msgTypes[292] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17675,7 +17728,7 @@ func (x *ReqFreeShop) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqFreeShop.ProtoReflect.Descriptor instead. func (*ReqFreeShop) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{291} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{292} } type ResFreeShop struct { @@ -17688,7 +17741,7 @@ type ResFreeShop struct { func (x *ResFreeShop) Reset() { *x = ResFreeShop{} - mi := &file_proto_Gameapi_proto_msgTypes[292] + mi := &file_proto_Gameapi_proto_msgTypes[293] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17700,7 +17753,7 @@ func (x *ResFreeShop) String() string { func (*ResFreeShop) ProtoMessage() {} func (x *ResFreeShop) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[292] + mi := &file_proto_Gameapi_proto_msgTypes[293] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17713,7 +17766,7 @@ func (x *ResFreeShop) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFreeShop.ProtoReflect.Descriptor instead. func (*ResFreeShop) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{292} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{293} } func (x *ResFreeShop) GetCode() RES_CODE { @@ -17740,7 +17793,7 @@ type ReqBuyChessShop struct { func (x *ReqBuyChessShop) Reset() { *x = ReqBuyChessShop{} - mi := &file_proto_Gameapi_proto_msgTypes[293] + mi := &file_proto_Gameapi_proto_msgTypes[294] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17752,7 +17805,7 @@ func (x *ReqBuyChessShop) String() string { func (*ReqBuyChessShop) ProtoMessage() {} func (x *ReqBuyChessShop) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[293] + mi := &file_proto_Gameapi_proto_msgTypes[294] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17765,7 +17818,7 @@ func (x *ReqBuyChessShop) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqBuyChessShop.ProtoReflect.Descriptor instead. func (*ReqBuyChessShop) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{293} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{294} } func (x *ReqBuyChessShop) GetId() int32 { @@ -17785,7 +17838,7 @@ type ResBuyChessShop struct { func (x *ResBuyChessShop) Reset() { *x = ResBuyChessShop{} - mi := &file_proto_Gameapi_proto_msgTypes[294] + mi := &file_proto_Gameapi_proto_msgTypes[295] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17797,7 +17850,7 @@ func (x *ResBuyChessShop) String() string { func (*ResBuyChessShop) ProtoMessage() {} func (x *ResBuyChessShop) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[294] + mi := &file_proto_Gameapi_proto_msgTypes[295] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17810,7 +17863,7 @@ func (x *ResBuyChessShop) ProtoReflect() protoreflect.Message { // Deprecated: Use ResBuyChessShop.ProtoReflect.Descriptor instead. func (*ResBuyChessShop) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{294} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{295} } func (x *ResBuyChessShop) GetCode() RES_CODE { @@ -17838,7 +17891,7 @@ type ReqBuyChessShop2 struct { func (x *ReqBuyChessShop2) Reset() { *x = ReqBuyChessShop2{} - mi := &file_proto_Gameapi_proto_msgTypes[295] + mi := &file_proto_Gameapi_proto_msgTypes[296] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17850,7 +17903,7 @@ func (x *ReqBuyChessShop2) String() string { func (*ReqBuyChessShop2) ProtoMessage() {} func (x *ReqBuyChessShop2) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[295] + mi := &file_proto_Gameapi_proto_msgTypes[296] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17863,7 +17916,7 @@ func (x *ReqBuyChessShop2) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqBuyChessShop2.ProtoReflect.Descriptor instead. func (*ReqBuyChessShop2) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{295} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{296} } func (x *ReqBuyChessShop2) GetId() int32 { @@ -17890,7 +17943,7 @@ type ResBuyChessShop2 struct { func (x *ResBuyChessShop2) Reset() { *x = ResBuyChessShop2{} - mi := &file_proto_Gameapi_proto_msgTypes[296] + mi := &file_proto_Gameapi_proto_msgTypes[297] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17902,7 +17955,7 @@ func (x *ResBuyChessShop2) String() string { func (*ResBuyChessShop2) ProtoMessage() {} func (x *ResBuyChessShop2) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[296] + mi := &file_proto_Gameapi_proto_msgTypes[297] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17915,7 +17968,7 @@ func (x *ResBuyChessShop2) ProtoReflect() protoreflect.Message { // Deprecated: Use ResBuyChessShop2.ProtoReflect.Descriptor instead. func (*ResBuyChessShop2) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{296} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{297} } func (x *ResBuyChessShop2) GetCode() RES_CODE { @@ -17941,7 +17994,7 @@ type ReqRefreshChessShop struct { func (x *ReqRefreshChessShop) Reset() { *x = ReqRefreshChessShop{} - mi := &file_proto_Gameapi_proto_msgTypes[297] + mi := &file_proto_Gameapi_proto_msgTypes[298] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17953,7 +18006,7 @@ func (x *ReqRefreshChessShop) String() string { func (*ReqRefreshChessShop) ProtoMessage() {} func (x *ReqRefreshChessShop) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[297] + mi := &file_proto_Gameapi_proto_msgTypes[298] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17966,7 +18019,7 @@ func (x *ReqRefreshChessShop) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqRefreshChessShop.ProtoReflect.Descriptor instead. func (*ReqRefreshChessShop) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{297} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{298} } type ResRefreshChessShop struct { @@ -17979,7 +18032,7 @@ type ResRefreshChessShop struct { func (x *ResRefreshChessShop) Reset() { *x = ResRefreshChessShop{} - mi := &file_proto_Gameapi_proto_msgTypes[298] + mi := &file_proto_Gameapi_proto_msgTypes[299] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17991,7 +18044,7 @@ func (x *ResRefreshChessShop) String() string { func (*ResRefreshChessShop) ProtoMessage() {} func (x *ResRefreshChessShop) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[298] + mi := &file_proto_Gameapi_proto_msgTypes[299] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18004,7 +18057,7 @@ func (x *ResRefreshChessShop) ProtoReflect() protoreflect.Message { // Deprecated: Use ResRefreshChessShop.ProtoReflect.Descriptor instead. func (*ResRefreshChessShop) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{298} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{299} } func (x *ResRefreshChessShop) GetCode() RES_CODE { @@ -18029,7 +18082,7 @@ type ReqEndless struct { func (x *ReqEndless) Reset() { *x = ReqEndless{} - mi := &file_proto_Gameapi_proto_msgTypes[299] + mi := &file_proto_Gameapi_proto_msgTypes[300] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18041,7 +18094,7 @@ func (x *ReqEndless) String() string { func (*ReqEndless) ProtoMessage() {} func (x *ReqEndless) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[299] + mi := &file_proto_Gameapi_proto_msgTypes[300] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18054,7 +18107,7 @@ func (x *ReqEndless) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqEndless.ProtoReflect.Descriptor instead. func (*ReqEndless) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{299} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{300} } type ResEndless struct { @@ -18067,7 +18120,7 @@ type ResEndless struct { func (x *ResEndless) Reset() { *x = ResEndless{} - mi := &file_proto_Gameapi_proto_msgTypes[300] + mi := &file_proto_Gameapi_proto_msgTypes[301] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18079,7 +18132,7 @@ func (x *ResEndless) String() string { func (*ResEndless) ProtoMessage() {} func (x *ResEndless) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[300] + mi := &file_proto_Gameapi_proto_msgTypes[301] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18092,7 +18145,7 @@ func (x *ResEndless) ProtoReflect() protoreflect.Message { // Deprecated: Use ResEndless.ProtoReflect.Descriptor instead. func (*ResEndless) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{300} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{301} } func (x *ResEndless) GetId() int32 { @@ -18120,7 +18173,7 @@ type ResEndlessInfo struct { func (x *ResEndlessInfo) Reset() { *x = ResEndlessInfo{} - mi := &file_proto_Gameapi_proto_msgTypes[301] + mi := &file_proto_Gameapi_proto_msgTypes[302] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18132,7 +18185,7 @@ func (x *ResEndlessInfo) String() string { func (*ResEndlessInfo) ProtoMessage() {} func (x *ResEndlessInfo) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[301] + mi := &file_proto_Gameapi_proto_msgTypes[302] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18145,7 +18198,7 @@ func (x *ResEndlessInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ResEndlessInfo.ProtoReflect.Descriptor instead. func (*ResEndlessInfo) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{301} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{302} } func (x *ResEndlessInfo) GetChargeId() int32 { @@ -18177,7 +18230,7 @@ type ReqEndlessReward struct { func (x *ReqEndlessReward) Reset() { *x = ReqEndlessReward{} - mi := &file_proto_Gameapi_proto_msgTypes[302] + mi := &file_proto_Gameapi_proto_msgTypes[303] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18189,7 +18242,7 @@ func (x *ReqEndlessReward) String() string { func (*ReqEndlessReward) ProtoMessage() {} func (x *ReqEndlessReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[302] + mi := &file_proto_Gameapi_proto_msgTypes[303] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18202,7 +18255,7 @@ func (x *ReqEndlessReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqEndlessReward.ProtoReflect.Descriptor instead. func (*ReqEndlessReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{302} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{303} } type ResEndlessReward struct { @@ -18215,7 +18268,7 @@ type ResEndlessReward struct { func (x *ResEndlessReward) Reset() { *x = ResEndlessReward{} - mi := &file_proto_Gameapi_proto_msgTypes[303] + mi := &file_proto_Gameapi_proto_msgTypes[304] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18227,7 +18280,7 @@ func (x *ResEndlessReward) String() string { func (*ResEndlessReward) ProtoMessage() {} func (x *ResEndlessReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[303] + mi := &file_proto_Gameapi_proto_msgTypes[304] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18240,7 +18293,7 @@ func (x *ResEndlessReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResEndlessReward.ProtoReflect.Descriptor instead. func (*ResEndlessReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{303} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{304} } func (x *ResEndlessReward) GetCode() RES_CODE { @@ -18269,7 +18322,7 @@ type ResPiggyBank struct { func (x *ResPiggyBank) Reset() { *x = ResPiggyBank{} - mi := &file_proto_Gameapi_proto_msgTypes[304] + mi := &file_proto_Gameapi_proto_msgTypes[305] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18281,7 +18334,7 @@ func (x *ResPiggyBank) String() string { func (*ResPiggyBank) ProtoMessage() {} func (x *ResPiggyBank) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[304] + mi := &file_proto_Gameapi_proto_msgTypes[305] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18294,7 +18347,7 @@ func (x *ResPiggyBank) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPiggyBank.ProtoReflect.Descriptor instead. func (*ResPiggyBank) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{304} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{305} } func (x *ResPiggyBank) GetType() int32 { @@ -18333,7 +18386,7 @@ type ReqPiggyBankReward struct { func (x *ReqPiggyBankReward) Reset() { *x = ReqPiggyBankReward{} - mi := &file_proto_Gameapi_proto_msgTypes[305] + mi := &file_proto_Gameapi_proto_msgTypes[306] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18345,7 +18398,7 @@ func (x *ReqPiggyBankReward) String() string { func (*ReqPiggyBankReward) ProtoMessage() {} func (x *ReqPiggyBankReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[305] + mi := &file_proto_Gameapi_proto_msgTypes[306] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18358,7 +18411,7 @@ func (x *ReqPiggyBankReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPiggyBankReward.ProtoReflect.Descriptor instead. func (*ReqPiggyBankReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{305} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{306} } type ResPiggyBankReward struct { @@ -18371,7 +18424,7 @@ type ResPiggyBankReward struct { func (x *ResPiggyBankReward) Reset() { *x = ResPiggyBankReward{} - mi := &file_proto_Gameapi_proto_msgTypes[306] + mi := &file_proto_Gameapi_proto_msgTypes[307] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18383,7 +18436,7 @@ func (x *ResPiggyBankReward) String() string { func (*ResPiggyBankReward) ProtoMessage() {} func (x *ResPiggyBankReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[306] + mi := &file_proto_Gameapi_proto_msgTypes[307] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18396,7 +18449,7 @@ func (x *ResPiggyBankReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPiggyBankReward.ProtoReflect.Descriptor instead. func (*ResPiggyBankReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{306} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{307} } func (x *ResPiggyBankReward) GetCode() RES_CODE { @@ -18423,7 +18476,7 @@ type ReqChargeReceive struct { func (x *ReqChargeReceive) Reset() { *x = ReqChargeReceive{} - mi := &file_proto_Gameapi_proto_msgTypes[307] + mi := &file_proto_Gameapi_proto_msgTypes[308] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18435,7 +18488,7 @@ func (x *ReqChargeReceive) String() string { func (*ReqChargeReceive) ProtoMessage() {} func (x *ReqChargeReceive) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[307] + mi := &file_proto_Gameapi_proto_msgTypes[308] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18448,7 +18501,7 @@ func (x *ReqChargeReceive) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqChargeReceive.ProtoReflect.Descriptor instead. func (*ReqChargeReceive) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{307} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{308} } func (x *ReqChargeReceive) GetUid() int64 { @@ -18475,7 +18528,7 @@ type ResChargeReceive struct { func (x *ResChargeReceive) Reset() { *x = ResChargeReceive{} - mi := &file_proto_Gameapi_proto_msgTypes[308] + mi := &file_proto_Gameapi_proto_msgTypes[309] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18487,7 +18540,7 @@ func (x *ResChargeReceive) String() string { func (*ResChargeReceive) ProtoMessage() {} func (x *ResChargeReceive) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[308] + mi := &file_proto_Gameapi_proto_msgTypes[309] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18500,7 +18553,7 @@ func (x *ResChargeReceive) ProtoReflect() protoreflect.Message { // Deprecated: Use ResChargeReceive.ProtoReflect.Descriptor instead. func (*ResChargeReceive) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{308} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{309} } func (x *ResChargeReceive) GetCode() RES_CODE { @@ -18530,7 +18583,7 @@ type ReqCreateOrderSn struct { func (x *ReqCreateOrderSn) Reset() { *x = ReqCreateOrderSn{} - mi := &file_proto_Gameapi_proto_msgTypes[309] + mi := &file_proto_Gameapi_proto_msgTypes[310] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18542,7 +18595,7 @@ func (x *ReqCreateOrderSn) String() string { func (*ReqCreateOrderSn) ProtoMessage() {} func (x *ReqCreateOrderSn) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[309] + mi := &file_proto_Gameapi_proto_msgTypes[310] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18555,7 +18608,7 @@ func (x *ReqCreateOrderSn) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCreateOrderSn.ProtoReflect.Descriptor instead. func (*ReqCreateOrderSn) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{309} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{310} } func (x *ReqCreateOrderSn) GetChargeId() int32 { @@ -18602,7 +18655,7 @@ type ResCreateOrderSn struct { func (x *ResCreateOrderSn) Reset() { *x = ResCreateOrderSn{} - mi := &file_proto_Gameapi_proto_msgTypes[310] + mi := &file_proto_Gameapi_proto_msgTypes[311] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18614,7 +18667,7 @@ func (x *ResCreateOrderSn) String() string { func (*ResCreateOrderSn) ProtoMessage() {} func (x *ResCreateOrderSn) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[310] + mi := &file_proto_Gameapi_proto_msgTypes[311] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18627,7 +18680,7 @@ func (x *ResCreateOrderSn) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCreateOrderSn.ProtoReflect.Descriptor instead. func (*ResCreateOrderSn) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{310} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{311} } func (x *ResCreateOrderSn) GetOrderSn() string { @@ -18649,7 +18702,7 @@ type ReqShippingOrder struct { func (x *ReqShippingOrder) Reset() { *x = ReqShippingOrder{} - mi := &file_proto_Gameapi_proto_msgTypes[311] + mi := &file_proto_Gameapi_proto_msgTypes[312] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18661,7 +18714,7 @@ func (x *ReqShippingOrder) String() string { func (*ReqShippingOrder) ProtoMessage() {} func (x *ReqShippingOrder) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[311] + mi := &file_proto_Gameapi_proto_msgTypes[312] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18674,7 +18727,7 @@ func (x *ReqShippingOrder) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqShippingOrder.ProtoReflect.Descriptor instead. func (*ReqShippingOrder) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{311} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{312} } func (x *ReqShippingOrder) GetOrderSn() string { @@ -18715,7 +18768,7 @@ type ResShippingOrder struct { func (x *ResShippingOrder) Reset() { *x = ResShippingOrder{} - mi := &file_proto_Gameapi_proto_msgTypes[312] + mi := &file_proto_Gameapi_proto_msgTypes[313] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18727,7 +18780,7 @@ func (x *ResShippingOrder) String() string { func (*ResShippingOrder) ProtoMessage() {} func (x *ResShippingOrder) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[312] + mi := &file_proto_Gameapi_proto_msgTypes[313] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18740,7 +18793,7 @@ func (x *ResShippingOrder) ProtoReflect() protoreflect.Message { // Deprecated: Use ResShippingOrder.ProtoReflect.Descriptor instead. func (*ResShippingOrder) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{312} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{313} } func (x *ResShippingOrder) GetCode() RES_CODE { @@ -18765,7 +18818,7 @@ type ReqChampship struct { func (x *ReqChampship) Reset() { *x = ReqChampship{} - mi := &file_proto_Gameapi_proto_msgTypes[313] + mi := &file_proto_Gameapi_proto_msgTypes[314] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18777,7 +18830,7 @@ func (x *ReqChampship) String() string { func (*ReqChampship) ProtoMessage() {} func (x *ReqChampship) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[313] + mi := &file_proto_Gameapi_proto_msgTypes[314] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18790,7 +18843,7 @@ func (x *ReqChampship) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqChampship.ProtoReflect.Descriptor instead. func (*ReqChampship) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{313} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{314} } type ResChampship struct { @@ -18808,7 +18861,7 @@ type ResChampship struct { func (x *ResChampship) Reset() { *x = ResChampship{} - mi := &file_proto_Gameapi_proto_msgTypes[314] + mi := &file_proto_Gameapi_proto_msgTypes[315] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18820,7 +18873,7 @@ func (x *ResChampship) String() string { func (*ResChampship) ProtoMessage() {} func (x *ResChampship) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[314] + mi := &file_proto_Gameapi_proto_msgTypes[315] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18833,7 +18886,7 @@ func (x *ResChampship) ProtoReflect() protoreflect.Message { // Deprecated: Use ResChampship.ProtoReflect.Descriptor instead. func (*ResChampship) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{314} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{315} } func (x *ResChampship) GetScore() int32 { @@ -18893,7 +18946,7 @@ type ReqChampshipReward struct { func (x *ReqChampshipReward) Reset() { *x = ReqChampshipReward{} - mi := &file_proto_Gameapi_proto_msgTypes[315] + mi := &file_proto_Gameapi_proto_msgTypes[316] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18905,7 +18958,7 @@ func (x *ReqChampshipReward) String() string { func (*ReqChampshipReward) ProtoMessage() {} func (x *ReqChampshipReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[315] + mi := &file_proto_Gameapi_proto_msgTypes[316] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18918,7 +18971,7 @@ func (x *ReqChampshipReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqChampshipReward.ProtoReflect.Descriptor instead. func (*ReqChampshipReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{315} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{316} } type ResChampshipReward struct { @@ -18931,7 +18984,7 @@ type ResChampshipReward struct { func (x *ResChampshipReward) Reset() { *x = ResChampshipReward{} - mi := &file_proto_Gameapi_proto_msgTypes[316] + mi := &file_proto_Gameapi_proto_msgTypes[317] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18943,7 +18996,7 @@ func (x *ResChampshipReward) String() string { func (*ResChampshipReward) ProtoMessage() {} func (x *ResChampshipReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[316] + mi := &file_proto_Gameapi_proto_msgTypes[317] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18956,7 +19009,7 @@ func (x *ResChampshipReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResChampshipReward.ProtoReflect.Descriptor instead. func (*ResChampshipReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{316} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{317} } func (x *ResChampshipReward) GetCode() RES_CODE { @@ -18981,7 +19034,7 @@ type ReqChampshipRankReward struct { func (x *ReqChampshipRankReward) Reset() { *x = ReqChampshipRankReward{} - mi := &file_proto_Gameapi_proto_msgTypes[317] + mi := &file_proto_Gameapi_proto_msgTypes[318] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18993,7 +19046,7 @@ func (x *ReqChampshipRankReward) String() string { func (*ReqChampshipRankReward) ProtoMessage() {} func (x *ReqChampshipRankReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[317] + mi := &file_proto_Gameapi_proto_msgTypes[318] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19006,7 +19059,7 @@ func (x *ReqChampshipRankReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqChampshipRankReward.ProtoReflect.Descriptor instead. func (*ReqChampshipRankReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{317} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{318} } type ResChampshipRankReward struct { @@ -19019,7 +19072,7 @@ type ResChampshipRankReward struct { func (x *ResChampshipRankReward) Reset() { *x = ResChampshipRankReward{} - mi := &file_proto_Gameapi_proto_msgTypes[318] + mi := &file_proto_Gameapi_proto_msgTypes[319] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19031,7 +19084,7 @@ func (x *ResChampshipRankReward) String() string { func (*ResChampshipRankReward) ProtoMessage() {} func (x *ResChampshipRankReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[318] + mi := &file_proto_Gameapi_proto_msgTypes[319] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19044,7 +19097,7 @@ func (x *ResChampshipRankReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResChampshipRankReward.ProtoReflect.Descriptor instead. func (*ResChampshipRankReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{318} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{319} } func (x *ResChampshipRankReward) GetCode() RES_CODE { @@ -19069,7 +19122,7 @@ type ReqChampshipRank struct { func (x *ReqChampshipRank) Reset() { *x = ReqChampshipRank{} - mi := &file_proto_Gameapi_proto_msgTypes[319] + mi := &file_proto_Gameapi_proto_msgTypes[320] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19081,7 +19134,7 @@ func (x *ReqChampshipRank) String() string { func (*ReqChampshipRank) ProtoMessage() {} func (x *ReqChampshipRank) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[319] + mi := &file_proto_Gameapi_proto_msgTypes[320] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19094,7 +19147,7 @@ func (x *ReqChampshipRank) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqChampshipRank.ProtoReflect.Descriptor instead. func (*ReqChampshipRank) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{319} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{320} } type ResChampshipRank struct { @@ -19108,7 +19161,7 @@ type ResChampshipRank struct { func (x *ResChampshipRank) Reset() { *x = ResChampshipRank{} - mi := &file_proto_Gameapi_proto_msgTypes[320] + mi := &file_proto_Gameapi_proto_msgTypes[321] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19120,7 +19173,7 @@ func (x *ResChampshipRank) String() string { func (*ResChampshipRank) ProtoMessage() {} func (x *ResChampshipRank) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[320] + mi := &file_proto_Gameapi_proto_msgTypes[321] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19133,7 +19186,7 @@ func (x *ResChampshipRank) ProtoReflect() protoreflect.Message { // Deprecated: Use ResChampshipRank.ProtoReflect.Descriptor instead. func (*ResChampshipRank) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{320} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{321} } func (x *ResChampshipRank) GetRankList() map[int32]*ResPlayerRank { @@ -19165,7 +19218,7 @@ type ReqChampshipPreRank struct { func (x *ReqChampshipPreRank) Reset() { *x = ReqChampshipPreRank{} - mi := &file_proto_Gameapi_proto_msgTypes[321] + mi := &file_proto_Gameapi_proto_msgTypes[322] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19177,7 +19230,7 @@ func (x *ReqChampshipPreRank) String() string { func (*ReqChampshipPreRank) ProtoMessage() {} func (x *ReqChampshipPreRank) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[321] + mi := &file_proto_Gameapi_proto_msgTypes[322] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19190,7 +19243,7 @@ func (x *ReqChampshipPreRank) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqChampshipPreRank.ProtoReflect.Descriptor instead. func (*ReqChampshipPreRank) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{321} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{322} } type ResChampshipPreRank struct { @@ -19204,7 +19257,7 @@ type ResChampshipPreRank struct { func (x *ResChampshipPreRank) Reset() { *x = ResChampshipPreRank{} - mi := &file_proto_Gameapi_proto_msgTypes[322] + mi := &file_proto_Gameapi_proto_msgTypes[323] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19216,7 +19269,7 @@ func (x *ResChampshipPreRank) String() string { func (*ResChampshipPreRank) ProtoMessage() {} func (x *ResChampshipPreRank) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[322] + mi := &file_proto_Gameapi_proto_msgTypes[323] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19229,7 +19282,7 @@ func (x *ResChampshipPreRank) ProtoReflect() protoreflect.Message { // Deprecated: Use ResChampshipPreRank.ProtoReflect.Descriptor instead. func (*ResChampshipPreRank) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{322} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{323} } func (x *ResChampshipPreRank) GetRankList() map[int32]*ResPlayerRank { @@ -19265,7 +19318,7 @@ type ResNotifyCard struct { func (x *ResNotifyCard) Reset() { *x = ResNotifyCard{} - mi := &file_proto_Gameapi_proto_msgTypes[323] + mi := &file_proto_Gameapi_proto_msgTypes[324] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19277,7 +19330,7 @@ func (x *ResNotifyCard) String() string { func (*ResNotifyCard) ProtoMessage() {} func (x *ResNotifyCard) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[323] + mi := &file_proto_Gameapi_proto_msgTypes[324] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19290,7 +19343,7 @@ func (x *ResNotifyCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ResNotifyCard.ProtoReflect.Descriptor instead. func (*ResNotifyCard) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{323} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{324} } func (x *ResNotifyCard) GetCard() map[int32]int32 { @@ -19330,7 +19383,7 @@ type ReqSetFacebookUrl struct { func (x *ReqSetFacebookUrl) Reset() { *x = ReqSetFacebookUrl{} - mi := &file_proto_Gameapi_proto_msgTypes[324] + mi := &file_proto_Gameapi_proto_msgTypes[325] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19342,7 +19395,7 @@ func (x *ReqSetFacebookUrl) String() string { func (*ReqSetFacebookUrl) ProtoMessage() {} func (x *ReqSetFacebookUrl) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[324] + mi := &file_proto_Gameapi_proto_msgTypes[325] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19355,7 +19408,7 @@ func (x *ReqSetFacebookUrl) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqSetFacebookUrl.ProtoReflect.Descriptor instead. func (*ReqSetFacebookUrl) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{324} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{325} } func (x *ReqSetFacebookUrl) GetUrl() string { @@ -19375,7 +19428,7 @@ type ResSetFacebookUrl struct { func (x *ResSetFacebookUrl) Reset() { *x = ResSetFacebookUrl{} - mi := &file_proto_Gameapi_proto_msgTypes[325] + mi := &file_proto_Gameapi_proto_msgTypes[326] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19387,7 +19440,7 @@ func (x *ResSetFacebookUrl) String() string { func (*ResSetFacebookUrl) ProtoMessage() {} func (x *ResSetFacebookUrl) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[325] + mi := &file_proto_Gameapi_proto_msgTypes[326] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19400,7 +19453,7 @@ func (x *ResSetFacebookUrl) ProtoReflect() protoreflect.Message { // Deprecated: Use ResSetFacebookUrl.ProtoReflect.Descriptor instead. func (*ResSetFacebookUrl) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{325} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{326} } func (x *ResSetFacebookUrl) GetCode() RES_CODE { @@ -19427,7 +19480,7 @@ type ReqInviteFriendData struct { func (x *ReqInviteFriendData) Reset() { *x = ReqInviteFriendData{} - mi := &file_proto_Gameapi_proto_msgTypes[326] + mi := &file_proto_Gameapi_proto_msgTypes[327] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19439,7 +19492,7 @@ func (x *ReqInviteFriendData) String() string { func (*ReqInviteFriendData) ProtoMessage() {} func (x *ReqInviteFriendData) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[326] + mi := &file_proto_Gameapi_proto_msgTypes[327] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19452,7 +19505,7 @@ func (x *ReqInviteFriendData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqInviteFriendData.ProtoReflect.Descriptor instead. func (*ReqInviteFriendData) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{326} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{327} } func (x *ReqInviteFriendData) GetDwUin() int64 { @@ -19472,7 +19525,7 @@ type ResInviteFriendData struct { func (x *ResInviteFriendData) Reset() { *x = ResInviteFriendData{} - mi := &file_proto_Gameapi_proto_msgTypes[327] + mi := &file_proto_Gameapi_proto_msgTypes[328] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19484,7 +19537,7 @@ func (x *ResInviteFriendData) String() string { func (*ResInviteFriendData) ProtoMessage() {} func (x *ResInviteFriendData) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[327] + mi := &file_proto_Gameapi_proto_msgTypes[328] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19497,7 +19550,7 @@ func (x *ResInviteFriendData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResInviteFriendData.ProtoReflect.Descriptor instead. func (*ResInviteFriendData) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{327} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{328} } func (x *ResInviteFriendData) GetIdLists() []int32 { @@ -19523,7 +19576,7 @@ type ReqSelfInvited struct { func (x *ReqSelfInvited) Reset() { *x = ReqSelfInvited{} - mi := &file_proto_Gameapi_proto_msgTypes[328] + mi := &file_proto_Gameapi_proto_msgTypes[329] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19535,7 +19588,7 @@ func (x *ReqSelfInvited) String() string { func (*ReqSelfInvited) ProtoMessage() {} func (x *ReqSelfInvited) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[328] + mi := &file_proto_Gameapi_proto_msgTypes[329] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19548,7 +19601,7 @@ func (x *ReqSelfInvited) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqSelfInvited.ProtoReflect.Descriptor instead. func (*ReqSelfInvited) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{328} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{329} } func (x *ReqSelfInvited) GetInviterId() int64 { @@ -19567,7 +19620,7 @@ type ResSelfInvited struct { func (x *ResSelfInvited) Reset() { *x = ResSelfInvited{} - mi := &file_proto_Gameapi_proto_msgTypes[329] + mi := &file_proto_Gameapi_proto_msgTypes[330] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19579,7 +19632,7 @@ func (x *ResSelfInvited) String() string { func (*ResSelfInvited) ProtoMessage() {} func (x *ResSelfInvited) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[329] + mi := &file_proto_Gameapi_proto_msgTypes[330] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19592,7 +19645,7 @@ func (x *ResSelfInvited) ProtoReflect() protoreflect.Message { // Deprecated: Use ResSelfInvited.ProtoReflect.Descriptor instead. func (*ResSelfInvited) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{329} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{330} } func (x *ResSelfInvited) GetResultCode() int32 { @@ -19612,7 +19665,7 @@ type NotifyInvitedSuccess struct { func (x *NotifyInvitedSuccess) Reset() { *x = NotifyInvitedSuccess{} - mi := &file_proto_Gameapi_proto_msgTypes[330] + mi := &file_proto_Gameapi_proto_msgTypes[331] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19624,7 +19677,7 @@ func (x *NotifyInvitedSuccess) String() string { func (*NotifyInvitedSuccess) ProtoMessage() {} func (x *NotifyInvitedSuccess) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[330] + mi := &file_proto_Gameapi_proto_msgTypes[331] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19637,7 +19690,7 @@ func (x *NotifyInvitedSuccess) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyInvitedSuccess.ProtoReflect.Descriptor instead. func (*NotifyInvitedSuccess) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{330} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{331} } func (x *NotifyInvitedSuccess) GetResultCode() int32 { @@ -19663,7 +19716,7 @@ type ReqGetInviteReward struct { func (x *ReqGetInviteReward) Reset() { *x = ReqGetInviteReward{} - mi := &file_proto_Gameapi_proto_msgTypes[331] + mi := &file_proto_Gameapi_proto_msgTypes[332] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19675,7 +19728,7 @@ func (x *ReqGetInviteReward) String() string { func (*ReqGetInviteReward) ProtoMessage() {} func (x *ReqGetInviteReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[331] + mi := &file_proto_Gameapi_proto_msgTypes[332] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19688,7 +19741,7 @@ func (x *ReqGetInviteReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGetInviteReward.ProtoReflect.Descriptor instead. func (*ReqGetInviteReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{331} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{332} } func (x *ReqGetInviteReward) GetGetIndex() int32 { @@ -19707,7 +19760,7 @@ type ResGetInviteReward struct { func (x *ResGetInviteReward) Reset() { *x = ResGetInviteReward{} - mi := &file_proto_Gameapi_proto_msgTypes[332] + mi := &file_proto_Gameapi_proto_msgTypes[333] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19719,7 +19772,7 @@ func (x *ResGetInviteReward) String() string { func (*ResGetInviteReward) ProtoMessage() {} func (x *ResGetInviteReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[332] + mi := &file_proto_Gameapi_proto_msgTypes[333] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19732,7 +19785,7 @@ func (x *ResGetInviteReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGetInviteReward.ProtoReflect.Descriptor instead. func (*ResGetInviteReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{332} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{333} } func (x *ResGetInviteReward) GetResultCode() int32 { @@ -19751,7 +19804,7 @@ type ReqAutoAddInviteFriend struct { func (x *ReqAutoAddInviteFriend) Reset() { *x = ReqAutoAddInviteFriend{} - mi := &file_proto_Gameapi_proto_msgTypes[333] + mi := &file_proto_Gameapi_proto_msgTypes[334] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19763,7 +19816,7 @@ func (x *ReqAutoAddInviteFriend) String() string { func (*ReqAutoAddInviteFriend) ProtoMessage() {} func (x *ReqAutoAddInviteFriend) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[333] + mi := &file_proto_Gameapi_proto_msgTypes[334] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19776,7 +19829,7 @@ func (x *ReqAutoAddInviteFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAutoAddInviteFriend.ProtoReflect.Descriptor instead. func (*ReqAutoAddInviteFriend) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{333} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{334} } func (x *ReqAutoAddInviteFriend) GetId() int64 { @@ -19795,7 +19848,7 @@ type ResAutoAddInviteFriend struct { func (x *ResAutoAddInviteFriend) Reset() { *x = ResAutoAddInviteFriend{} - mi := &file_proto_Gameapi_proto_msgTypes[334] + mi := &file_proto_Gameapi_proto_msgTypes[335] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19807,7 +19860,7 @@ func (x *ResAutoAddInviteFriend) String() string { func (*ResAutoAddInviteFriend) ProtoMessage() {} func (x *ResAutoAddInviteFriend) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[334] + mi := &file_proto_Gameapi_proto_msgTypes[335] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19820,7 +19873,7 @@ func (x *ResAutoAddInviteFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use ResAutoAddInviteFriend.ProtoReflect.Descriptor instead. func (*ResAutoAddInviteFriend) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{334} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{335} } func (x *ResAutoAddInviteFriend) GetResultCode() int32 { @@ -19839,7 +19892,7 @@ type ReqAutoAddInviteFriend2 struct { func (x *ReqAutoAddInviteFriend2) Reset() { *x = ReqAutoAddInviteFriend2{} - mi := &file_proto_Gameapi_proto_msgTypes[335] + mi := &file_proto_Gameapi_proto_msgTypes[336] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19851,7 +19904,7 @@ func (x *ReqAutoAddInviteFriend2) String() string { func (*ReqAutoAddInviteFriend2) ProtoMessage() {} func (x *ReqAutoAddInviteFriend2) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[335] + mi := &file_proto_Gameapi_proto_msgTypes[336] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19864,7 +19917,7 @@ func (x *ReqAutoAddInviteFriend2) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAutoAddInviteFriend2.ProtoReflect.Descriptor instead. func (*ReqAutoAddInviteFriend2) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{335} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{336} } func (x *ReqAutoAddInviteFriend2) GetId() string { @@ -19883,7 +19936,7 @@ type ResAutoAddInviteFriend2 struct { func (x *ResAutoAddInviteFriend2) Reset() { *x = ResAutoAddInviteFriend2{} - mi := &file_proto_Gameapi_proto_msgTypes[336] + mi := &file_proto_Gameapi_proto_msgTypes[337] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19895,7 +19948,7 @@ func (x *ResAutoAddInviteFriend2) String() string { func (*ResAutoAddInviteFriend2) ProtoMessage() {} func (x *ResAutoAddInviteFriend2) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[336] + mi := &file_proto_Gameapi_proto_msgTypes[337] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19908,7 +19961,7 @@ func (x *ResAutoAddInviteFriend2) ProtoReflect() protoreflect.Message { // Deprecated: Use ResAutoAddInviteFriend2.ProtoReflect.Descriptor instead. func (*ResAutoAddInviteFriend2) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{336} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{337} } func (x *ResAutoAddInviteFriend2) GetResultCode() int32 { @@ -19927,7 +19980,7 @@ type ReqMining struct { func (x *ReqMining) Reset() { *x = ReqMining{} - mi := &file_proto_Gameapi_proto_msgTypes[337] + mi := &file_proto_Gameapi_proto_msgTypes[338] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19939,7 +19992,7 @@ func (x *ReqMining) String() string { func (*ReqMining) ProtoMessage() {} func (x *ReqMining) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[337] + mi := &file_proto_Gameapi_proto_msgTypes[338] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19952,7 +20005,7 @@ func (x *ReqMining) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqMining.ProtoReflect.Descriptor instead. func (*ReqMining) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{337} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{338} } type ResMining struct { @@ -19971,7 +20024,7 @@ type ResMining struct { func (x *ResMining) Reset() { *x = ResMining{} - mi := &file_proto_Gameapi_proto_msgTypes[338] + mi := &file_proto_Gameapi_proto_msgTypes[339] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19983,7 +20036,7 @@ func (x *ResMining) String() string { func (*ResMining) ProtoMessage() {} func (x *ResMining) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[338] + mi := &file_proto_Gameapi_proto_msgTypes[339] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19996,7 +20049,7 @@ func (x *ResMining) ProtoReflect() protoreflect.Message { // Deprecated: Use ResMining.ProtoReflect.Descriptor instead. func (*ResMining) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{338} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{339} } func (x *ResMining) GetId() int32 { @@ -20065,7 +20118,7 @@ type ReqMiningTake struct { func (x *ReqMiningTake) Reset() { *x = ReqMiningTake{} - mi := &file_proto_Gameapi_proto_msgTypes[339] + mi := &file_proto_Gameapi_proto_msgTypes[340] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20077,7 +20130,7 @@ func (x *ReqMiningTake) String() string { func (*ReqMiningTake) ProtoMessage() {} func (x *ReqMiningTake) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[339] + mi := &file_proto_Gameapi_proto_msgTypes[340] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20090,7 +20143,7 @@ func (x *ReqMiningTake) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqMiningTake.ProtoReflect.Descriptor instead. func (*ReqMiningTake) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{339} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{340} } func (x *ReqMiningTake) GetMap() map[int32]string { @@ -20117,7 +20170,7 @@ type ResMiningTake struct { func (x *ResMiningTake) Reset() { *x = ResMiningTake{} - mi := &file_proto_Gameapi_proto_msgTypes[340] + mi := &file_proto_Gameapi_proto_msgTypes[341] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20129,7 +20182,7 @@ func (x *ResMiningTake) String() string { func (*ResMiningTake) ProtoMessage() {} func (x *ResMiningTake) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[340] + mi := &file_proto_Gameapi_proto_msgTypes[341] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20142,7 +20195,7 @@ func (x *ResMiningTake) ProtoReflect() protoreflect.Message { // Deprecated: Use ResMiningTake.ProtoReflect.Descriptor instead. func (*ResMiningTake) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{340} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{341} } func (x *ResMiningTake) GetCode() RES_CODE { @@ -20167,7 +20220,7 @@ type ReqMiningReward struct { func (x *ReqMiningReward) Reset() { *x = ReqMiningReward{} - mi := &file_proto_Gameapi_proto_msgTypes[341] + mi := &file_proto_Gameapi_proto_msgTypes[342] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20179,7 +20232,7 @@ func (x *ReqMiningReward) String() string { func (*ReqMiningReward) ProtoMessage() {} func (x *ReqMiningReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[341] + mi := &file_proto_Gameapi_proto_msgTypes[342] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20192,7 +20245,7 @@ func (x *ReqMiningReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqMiningReward.ProtoReflect.Descriptor instead. func (*ReqMiningReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{341} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{342} } type ResMiningReward struct { @@ -20205,7 +20258,7 @@ type ResMiningReward struct { func (x *ResMiningReward) Reset() { *x = ResMiningReward{} - mi := &file_proto_Gameapi_proto_msgTypes[342] + mi := &file_proto_Gameapi_proto_msgTypes[343] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20217,7 +20270,7 @@ func (x *ResMiningReward) String() string { func (*ResMiningReward) ProtoMessage() {} func (x *ResMiningReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[342] + mi := &file_proto_Gameapi_proto_msgTypes[343] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20230,7 +20283,7 @@ func (x *ResMiningReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResMiningReward.ProtoReflect.Descriptor instead. func (*ResMiningReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{342} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{343} } func (x *ResMiningReward) GetCode() RES_CODE { @@ -20256,7 +20309,7 @@ type ReqActPass struct { func (x *ReqActPass) Reset() { *x = ReqActPass{} - mi := &file_proto_Gameapi_proto_msgTypes[343] + mi := &file_proto_Gameapi_proto_msgTypes[344] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20268,7 +20321,7 @@ func (x *ReqActPass) String() string { func (*ReqActPass) ProtoMessage() {} func (x *ReqActPass) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[343] + mi := &file_proto_Gameapi_proto_msgTypes[344] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20281,7 +20334,7 @@ func (x *ReqActPass) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqActPass.ProtoReflect.Descriptor instead. func (*ReqActPass) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{343} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{344} } type ResActPass struct { @@ -20300,7 +20353,7 @@ type ResActPass struct { func (x *ResActPass) Reset() { *x = ResActPass{} - mi := &file_proto_Gameapi_proto_msgTypes[344] + mi := &file_proto_Gameapi_proto_msgTypes[345] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20312,7 +20365,7 @@ func (x *ResActPass) String() string { func (*ResActPass) ProtoMessage() {} func (x *ResActPass) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[344] + mi := &file_proto_Gameapi_proto_msgTypes[345] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20325,7 +20378,7 @@ func (x *ResActPass) ProtoReflect() protoreflect.Message { // Deprecated: Use ResActPass.ProtoReflect.Descriptor instead. func (*ResActPass) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{344} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{345} } func (x *ResActPass) GetId() int32 { @@ -20392,7 +20445,7 @@ type ReqActPassReward struct { func (x *ReqActPassReward) Reset() { *x = ReqActPassReward{} - mi := &file_proto_Gameapi_proto_msgTypes[345] + mi := &file_proto_Gameapi_proto_msgTypes[346] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20404,7 +20457,7 @@ func (x *ReqActPassReward) String() string { func (*ReqActPassReward) ProtoMessage() {} func (x *ReqActPassReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[345] + mi := &file_proto_Gameapi_proto_msgTypes[346] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20417,7 +20470,7 @@ func (x *ReqActPassReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqActPassReward.ProtoReflect.Descriptor instead. func (*ReqActPassReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{345} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{346} } type ResActPassReward struct { @@ -20431,7 +20484,7 @@ type ResActPassReward struct { func (x *ResActPassReward) Reset() { *x = ResActPassReward{} - mi := &file_proto_Gameapi_proto_msgTypes[346] + mi := &file_proto_Gameapi_proto_msgTypes[347] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20443,7 +20496,7 @@ func (x *ResActPassReward) String() string { func (*ResActPassReward) ProtoMessage() {} func (x *ResActPassReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[346] + mi := &file_proto_Gameapi_proto_msgTypes[347] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20456,7 +20509,7 @@ func (x *ResActPassReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResActPassReward.ProtoReflect.Descriptor instead. func (*ResActPassReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{346} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{347} } func (x *ResActPassReward) GetCode() RES_CODE { @@ -20489,7 +20542,7 @@ type ResActRed struct { func (x *ResActRed) Reset() { *x = ResActRed{} - mi := &file_proto_Gameapi_proto_msgTypes[347] + mi := &file_proto_Gameapi_proto_msgTypes[348] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20501,7 +20554,7 @@ func (x *ResActRed) String() string { func (*ResActRed) ProtoMessage() {} func (x *ResActRed) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[347] + mi := &file_proto_Gameapi_proto_msgTypes[348] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20514,7 +20567,7 @@ func (x *ResActRed) ProtoReflect() protoreflect.Message { // Deprecated: Use ResActRed.ProtoReflect.Descriptor instead. func (*ResActRed) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{347} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{348} } func (x *ResActRed) GetRed() map[int32]int32 { @@ -20535,7 +20588,7 @@ type NotifyActRed struct { func (x *NotifyActRed) Reset() { *x = NotifyActRed{} - mi := &file_proto_Gameapi_proto_msgTypes[348] + mi := &file_proto_Gameapi_proto_msgTypes[349] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20547,7 +20600,7 @@ func (x *NotifyActRed) String() string { func (*NotifyActRed) ProtoMessage() {} func (x *NotifyActRed) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[348] + mi := &file_proto_Gameapi_proto_msgTypes[349] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20560,7 +20613,7 @@ func (x *NotifyActRed) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyActRed.ProtoReflect.Descriptor instead. func (*NotifyActRed) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{348} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{349} } func (x *NotifyActRed) GetId() int32 { @@ -20587,7 +20640,7 @@ type ActivityNotify struct { func (x *ActivityNotify) Reset() { *x = ActivityNotify{} - mi := &file_proto_Gameapi_proto_msgTypes[349] + mi := &file_proto_Gameapi_proto_msgTypes[350] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20599,7 +20652,7 @@ func (x *ActivityNotify) String() string { func (*ActivityNotify) ProtoMessage() {} func (x *ActivityNotify) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[349] + mi := &file_proto_Gameapi_proto_msgTypes[350] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20612,7 +20665,7 @@ func (x *ActivityNotify) ProtoReflect() protoreflect.Message { // Deprecated: Use ActivityNotify.ProtoReflect.Descriptor instead. func (*ActivityNotify) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{349} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{350} } func (x *ActivityNotify) GetInfo() *ActivityInfo { @@ -20631,7 +20684,7 @@ type ResItem struct { func (x *ResItem) Reset() { *x = ResItem{} - mi := &file_proto_Gameapi_proto_msgTypes[350] + mi := &file_proto_Gameapi_proto_msgTypes[351] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20643,7 +20696,7 @@ func (x *ResItem) String() string { func (*ResItem) ProtoMessage() {} func (x *ResItem) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[350] + mi := &file_proto_Gameapi_proto_msgTypes[351] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20656,7 +20709,7 @@ func (x *ResItem) ProtoReflect() protoreflect.Message { // Deprecated: Use ResItem.ProtoReflect.Descriptor instead. func (*ResItem) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{350} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{351} } func (x *ResItem) GetItem() map[int32]int32 { @@ -20675,7 +20728,7 @@ type ItemNotify struct { func (x *ItemNotify) Reset() { *x = ItemNotify{} - mi := &file_proto_Gameapi_proto_msgTypes[351] + mi := &file_proto_Gameapi_proto_msgTypes[352] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20687,7 +20740,7 @@ func (x *ItemNotify) String() string { func (*ItemNotify) ProtoMessage() {} func (x *ItemNotify) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[351] + mi := &file_proto_Gameapi_proto_msgTypes[352] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20700,7 +20753,7 @@ func (x *ItemNotify) ProtoReflect() protoreflect.Message { // Deprecated: Use ItemNotify.ProtoReflect.Descriptor instead. func (*ItemNotify) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{351} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{352} } func (x *ItemNotify) GetItem() map[int32]int32 { @@ -20719,7 +20772,7 @@ type ReqGuessColor struct { func (x *ReqGuessColor) Reset() { *x = ReqGuessColor{} - mi := &file_proto_Gameapi_proto_msgTypes[352] + mi := &file_proto_Gameapi_proto_msgTypes[353] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20731,7 +20784,7 @@ func (x *ReqGuessColor) String() string { func (*ReqGuessColor) ProtoMessage() {} func (x *ReqGuessColor) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[352] + mi := &file_proto_Gameapi_proto_msgTypes[353] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20744,7 +20797,7 @@ func (x *ReqGuessColor) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGuessColor.ProtoReflect.Descriptor instead. func (*ReqGuessColor) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{352} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{353} } type ResGuessColor struct { @@ -20764,7 +20817,7 @@ type ResGuessColor struct { func (x *ResGuessColor) Reset() { *x = ResGuessColor{} - mi := &file_proto_Gameapi_proto_msgTypes[353] + mi := &file_proto_Gameapi_proto_msgTypes[354] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20776,7 +20829,7 @@ func (x *ResGuessColor) String() string { func (*ResGuessColor) ProtoMessage() {} func (x *ResGuessColor) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[353] + mi := &file_proto_Gameapi_proto_msgTypes[354] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20789,7 +20842,7 @@ func (x *ResGuessColor) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGuessColor.ProtoReflect.Descriptor instead. func (*ResGuessColor) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{353} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{354} } func (x *ResGuessColor) GetId() int32 { @@ -20867,7 +20920,7 @@ type Opponent struct { func (x *Opponent) Reset() { *x = Opponent{} - mi := &file_proto_Gameapi_proto_msgTypes[354] + mi := &file_proto_Gameapi_proto_msgTypes[355] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20879,7 +20932,7 @@ func (x *Opponent) String() string { func (*Opponent) ProtoMessage() {} func (x *Opponent) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[354] + mi := &file_proto_Gameapi_proto_msgTypes[355] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20892,7 +20945,7 @@ func (x *Opponent) ProtoReflect() protoreflect.Message { // Deprecated: Use Opponent.ProtoReflect.Descriptor instead. func (*Opponent) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{354} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{355} } func (x *Opponent) GetName() string { @@ -20934,7 +20987,7 @@ type ReqGuessColorTake struct { func (x *ReqGuessColorTake) Reset() { *x = ReqGuessColorTake{} - mi := &file_proto_Gameapi_proto_msgTypes[355] + mi := &file_proto_Gameapi_proto_msgTypes[356] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20946,7 +20999,7 @@ func (x *ReqGuessColorTake) String() string { func (*ReqGuessColorTake) ProtoMessage() {} func (x *ReqGuessColorTake) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[355] + mi := &file_proto_Gameapi_proto_msgTypes[356] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20959,7 +21012,7 @@ func (x *ReqGuessColorTake) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGuessColorTake.ProtoReflect.Descriptor instead. func (*ReqGuessColorTake) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{355} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{356} } func (x *ReqGuessColorTake) GetMap() *GuessColorInfo { @@ -20985,7 +21038,7 @@ type GuessColorInfo struct { func (x *GuessColorInfo) Reset() { *x = GuessColorInfo{} - mi := &file_proto_Gameapi_proto_msgTypes[356] + mi := &file_proto_Gameapi_proto_msgTypes[357] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20997,7 +21050,7 @@ func (x *GuessColorInfo) String() string { func (*GuessColorInfo) ProtoMessage() {} func (x *GuessColorInfo) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[356] + mi := &file_proto_Gameapi_proto_msgTypes[357] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21010,7 +21063,7 @@ func (x *GuessColorInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use GuessColorInfo.ProtoReflect.Descriptor instead. func (*GuessColorInfo) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{356} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{357} } func (x *GuessColorInfo) GetMap() map[int32]int32 { @@ -21030,7 +21083,7 @@ type ResGuessColorTake struct { func (x *ResGuessColorTake) Reset() { *x = ResGuessColorTake{} - mi := &file_proto_Gameapi_proto_msgTypes[357] + mi := &file_proto_Gameapi_proto_msgTypes[358] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21042,7 +21095,7 @@ func (x *ResGuessColorTake) String() string { func (*ResGuessColorTake) ProtoMessage() {} func (x *ResGuessColorTake) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[357] + mi := &file_proto_Gameapi_proto_msgTypes[358] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21055,7 +21108,7 @@ func (x *ResGuessColorTake) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGuessColorTake.ProtoReflect.Descriptor instead. func (*ResGuessColorTake) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{357} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{358} } func (x *ResGuessColorTake) GetCode() RES_CODE { @@ -21081,7 +21134,7 @@ type ReqGuessColorReward struct { func (x *ReqGuessColorReward) Reset() { *x = ReqGuessColorReward{} - mi := &file_proto_Gameapi_proto_msgTypes[358] + mi := &file_proto_Gameapi_proto_msgTypes[359] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21093,7 +21146,7 @@ func (x *ReqGuessColorReward) String() string { func (*ReqGuessColorReward) ProtoMessage() {} func (x *ReqGuessColorReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[358] + mi := &file_proto_Gameapi_proto_msgTypes[359] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21106,7 +21159,7 @@ func (x *ReqGuessColorReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGuessColorReward.ProtoReflect.Descriptor instead. func (*ReqGuessColorReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{358} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{359} } type ResGuessColorReward struct { @@ -21119,7 +21172,7 @@ type ResGuessColorReward struct { func (x *ResGuessColorReward) Reset() { *x = ResGuessColorReward{} - mi := &file_proto_Gameapi_proto_msgTypes[359] + mi := &file_proto_Gameapi_proto_msgTypes[360] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21131,7 +21184,7 @@ func (x *ResGuessColorReward) String() string { func (*ResGuessColorReward) ProtoMessage() {} func (x *ResGuessColorReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[359] + mi := &file_proto_Gameapi_proto_msgTypes[360] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21144,7 +21197,7 @@ func (x *ResGuessColorReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGuessColorReward.ProtoReflect.Descriptor instead. func (*ResGuessColorReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{359} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{360} } func (x *ResGuessColorReward) GetCode() RES_CODE { @@ -21169,7 +21222,7 @@ type ReqRace struct { func (x *ReqRace) Reset() { *x = ReqRace{} - mi := &file_proto_Gameapi_proto_msgTypes[360] + mi := &file_proto_Gameapi_proto_msgTypes[361] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21181,7 +21234,7 @@ func (x *ReqRace) String() string { func (*ReqRace) ProtoMessage() {} func (x *ReqRace) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[360] + mi := &file_proto_Gameapi_proto_msgTypes[361] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21194,7 +21247,7 @@ func (x *ReqRace) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqRace.ProtoReflect.Descriptor instead. func (*ReqRace) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{360} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{361} } type ResRace struct { @@ -21215,7 +21268,7 @@ type ResRace struct { func (x *ResRace) Reset() { *x = ResRace{} - mi := &file_proto_Gameapi_proto_msgTypes[361] + mi := &file_proto_Gameapi_proto_msgTypes[362] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21227,7 +21280,7 @@ func (x *ResRace) String() string { func (*ResRace) ProtoMessage() {} func (x *ResRace) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[361] + mi := &file_proto_Gameapi_proto_msgTypes[362] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21240,7 +21293,7 @@ func (x *ResRace) ProtoReflect() protoreflect.Message { // Deprecated: Use ResRace.ProtoReflect.Descriptor instead. func (*ResRace) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{361} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{362} } func (x *ResRace) GetId() int32 { @@ -21326,7 +21379,7 @@ type Raceopponent struct { func (x *Raceopponent) Reset() { *x = Raceopponent{} - mi := &file_proto_Gameapi_proto_msgTypes[362] + mi := &file_proto_Gameapi_proto_msgTypes[363] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21338,7 +21391,7 @@ func (x *Raceopponent) String() string { func (*Raceopponent) ProtoMessage() {} func (x *Raceopponent) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[362] + mi := &file_proto_Gameapi_proto_msgTypes[363] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21351,7 +21404,7 @@ func (x *Raceopponent) ProtoReflect() protoreflect.Message { // Deprecated: Use Raceopponent.ProtoReflect.Descriptor instead. func (*Raceopponent) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{362} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{363} } func (x *Raceopponent) GetId() int32 { @@ -21397,7 +21450,7 @@ type ReqRaceStart struct { func (x *ReqRaceStart) Reset() { *x = ReqRaceStart{} - mi := &file_proto_Gameapi_proto_msgTypes[363] + mi := &file_proto_Gameapi_proto_msgTypes[364] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21409,7 +21462,7 @@ func (x *ReqRaceStart) String() string { func (*ReqRaceStart) ProtoMessage() {} func (x *ReqRaceStart) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[363] + mi := &file_proto_Gameapi_proto_msgTypes[364] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21422,7 +21475,7 @@ func (x *ReqRaceStart) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqRaceStart.ProtoReflect.Descriptor instead. func (*ReqRaceStart) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{363} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{364} } type ResRaceStart struct { @@ -21435,7 +21488,7 @@ type ResRaceStart struct { func (x *ResRaceStart) Reset() { *x = ResRaceStart{} - mi := &file_proto_Gameapi_proto_msgTypes[364] + mi := &file_proto_Gameapi_proto_msgTypes[365] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21447,7 +21500,7 @@ func (x *ResRaceStart) String() string { func (*ResRaceStart) ProtoMessage() {} func (x *ResRaceStart) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[364] + mi := &file_proto_Gameapi_proto_msgTypes[365] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21460,7 +21513,7 @@ func (x *ResRaceStart) ProtoReflect() protoreflect.Message { // Deprecated: Use ResRaceStart.ProtoReflect.Descriptor instead. func (*ResRaceStart) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{364} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{365} } func (x *ResRaceStart) GetCode() RES_CODE { @@ -21485,7 +21538,7 @@ type ReqRaceReward struct { func (x *ReqRaceReward) Reset() { *x = ReqRaceReward{} - mi := &file_proto_Gameapi_proto_msgTypes[365] + mi := &file_proto_Gameapi_proto_msgTypes[366] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21497,7 +21550,7 @@ func (x *ReqRaceReward) String() string { func (*ReqRaceReward) ProtoMessage() {} func (x *ReqRaceReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[365] + mi := &file_proto_Gameapi_proto_msgTypes[366] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21510,7 +21563,7 @@ func (x *ReqRaceReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqRaceReward.ProtoReflect.Descriptor instead. func (*ReqRaceReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{365} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{366} } type ResRaceReward struct { @@ -21523,7 +21576,7 @@ type ResRaceReward struct { func (x *ResRaceReward) Reset() { *x = ResRaceReward{} - mi := &file_proto_Gameapi_proto_msgTypes[366] + mi := &file_proto_Gameapi_proto_msgTypes[367] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21535,7 +21588,7 @@ func (x *ResRaceReward) String() string { func (*ResRaceReward) ProtoMessage() {} func (x *ResRaceReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[366] + mi := &file_proto_Gameapi_proto_msgTypes[367] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21548,7 +21601,7 @@ func (x *ResRaceReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResRaceReward.ProtoReflect.Descriptor instead. func (*ResRaceReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{366} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{367} } func (x *ResRaceReward) GetCode() RES_CODE { @@ -21574,7 +21627,7 @@ type ReqPlayroom struct { func (x *ReqPlayroom) Reset() { *x = ReqPlayroom{} - mi := &file_proto_Gameapi_proto_msgTypes[367] + mi := &file_proto_Gameapi_proto_msgTypes[368] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21586,7 +21639,7 @@ func (x *ReqPlayroom) String() string { func (*ReqPlayroom) ProtoMessage() {} func (x *ReqPlayroom) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[367] + mi := &file_proto_Gameapi_proto_msgTypes[368] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21599,7 +21652,7 @@ func (x *ReqPlayroom) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroom.ProtoReflect.Descriptor instead. func (*ReqPlayroom) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{367} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{368} } type ResPlayroom struct { @@ -21640,7 +21693,7 @@ type ResPlayroom struct { func (x *ResPlayroom) Reset() { *x = ResPlayroom{} - mi := &file_proto_Gameapi_proto_msgTypes[368] + mi := &file_proto_Gameapi_proto_msgTypes[369] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21652,7 +21705,7 @@ func (x *ResPlayroom) String() string { func (*ResPlayroom) ProtoMessage() {} func (x *ResPlayroom) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[368] + mi := &file_proto_Gameapi_proto_msgTypes[369] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21665,7 +21718,7 @@ func (x *ResPlayroom) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroom.ProtoReflect.Descriptor instead. func (*ResPlayroom) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{368} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{369} } func (x *ResPlayroom) GetStatus() int32 { @@ -21888,7 +21941,7 @@ type NotifyPlayroomTask struct { func (x *NotifyPlayroomTask) Reset() { *x = NotifyPlayroomTask{} - mi := &file_proto_Gameapi_proto_msgTypes[369] + mi := &file_proto_Gameapi_proto_msgTypes[370] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21900,7 +21953,7 @@ func (x *NotifyPlayroomTask) String() string { func (*NotifyPlayroomTask) ProtoMessage() {} func (x *NotifyPlayroomTask) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[369] + mi := &file_proto_Gameapi_proto_msgTypes[370] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21913,7 +21966,7 @@ func (x *NotifyPlayroomTask) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyPlayroomTask.ProtoReflect.Descriptor instead. func (*NotifyPlayroomTask) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{369} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{370} } func (x *NotifyPlayroomTask) GetDailyTask() []*DailyTask { @@ -21940,7 +21993,7 @@ type ReqPlayroomTask struct { func (x *ReqPlayroomTask) Reset() { *x = ReqPlayroomTask{} - mi := &file_proto_Gameapi_proto_msgTypes[370] + mi := &file_proto_Gameapi_proto_msgTypes[371] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21952,7 +22005,7 @@ func (x *ReqPlayroomTask) String() string { func (*ReqPlayroomTask) ProtoMessage() {} func (x *ReqPlayroomTask) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[370] + mi := &file_proto_Gameapi_proto_msgTypes[371] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21965,7 +22018,7 @@ func (x *ReqPlayroomTask) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomTask.ProtoReflect.Descriptor instead. func (*ReqPlayroomTask) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{370} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{371} } func (x *ReqPlayroomTask) GetId() int32 { @@ -21986,7 +22039,7 @@ type ResPlayroomTask struct { func (x *ResPlayroomTask) Reset() { *x = ResPlayroomTask{} - mi := &file_proto_Gameapi_proto_msgTypes[371] + mi := &file_proto_Gameapi_proto_msgTypes[372] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21998,7 +22051,7 @@ func (x *ResPlayroomTask) String() string { func (*ResPlayroomTask) ProtoMessage() {} func (x *ResPlayroomTask) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[371] + mi := &file_proto_Gameapi_proto_msgTypes[372] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22011,7 +22064,7 @@ func (x *ResPlayroomTask) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomTask.ProtoReflect.Descriptor instead. func (*ResPlayroomTask) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{371} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{372} } func (x *ResPlayroomTask) GetCode() RES_CODE { @@ -22045,7 +22098,7 @@ type ReqPlayroomTaskReward struct { func (x *ReqPlayroomTaskReward) Reset() { *x = ReqPlayroomTaskReward{} - mi := &file_proto_Gameapi_proto_msgTypes[372] + mi := &file_proto_Gameapi_proto_msgTypes[373] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22057,7 +22110,7 @@ func (x *ReqPlayroomTaskReward) String() string { func (*ReqPlayroomTaskReward) ProtoMessage() {} func (x *ReqPlayroomTaskReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[372] + mi := &file_proto_Gameapi_proto_msgTypes[373] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22070,7 +22123,7 @@ func (x *ReqPlayroomTaskReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomTaskReward.ProtoReflect.Descriptor instead. func (*ReqPlayroomTaskReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{372} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{373} } func (x *ReqPlayroomTaskReward) GetType() int32 { @@ -22092,7 +22145,7 @@ type ResPlayroomTaskReward struct { func (x *ResPlayroomTaskReward) Reset() { *x = ResPlayroomTaskReward{} - mi := &file_proto_Gameapi_proto_msgTypes[373] + mi := &file_proto_Gameapi_proto_msgTypes[374] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22104,7 +22157,7 @@ func (x *ResPlayroomTaskReward) String() string { func (*ResPlayroomTaskReward) ProtoMessage() {} func (x *ResPlayroomTaskReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[373] + mi := &file_proto_Gameapi_proto_msgTypes[374] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22117,7 +22170,7 @@ func (x *ResPlayroomTaskReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomTaskReward.ProtoReflect.Descriptor instead. func (*ResPlayroomTaskReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{373} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{374} } func (x *ResPlayroomTaskReward) GetCode() RES_CODE { @@ -22157,7 +22210,7 @@ type ReqPlayroomUnlock struct { func (x *ReqPlayroomUnlock) Reset() { *x = ReqPlayroomUnlock{} - mi := &file_proto_Gameapi_proto_msgTypes[374] + mi := &file_proto_Gameapi_proto_msgTypes[375] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22169,7 +22222,7 @@ func (x *ReqPlayroomUnlock) String() string { func (*ReqPlayroomUnlock) ProtoMessage() {} func (x *ReqPlayroomUnlock) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[374] + mi := &file_proto_Gameapi_proto_msgTypes[375] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22182,7 +22235,7 @@ func (x *ReqPlayroomUnlock) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomUnlock.ProtoReflect.Descriptor instead. func (*ReqPlayroomUnlock) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{374} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{375} } func (x *ReqPlayroomUnlock) GetId() int32 { @@ -22203,7 +22256,7 @@ type ResPlayroomUnlock struct { func (x *ResPlayroomUnlock) Reset() { *x = ResPlayroomUnlock{} - mi := &file_proto_Gameapi_proto_msgTypes[375] + mi := &file_proto_Gameapi_proto_msgTypes[376] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22215,7 +22268,7 @@ func (x *ResPlayroomUnlock) String() string { func (*ResPlayroomUnlock) ProtoMessage() {} func (x *ResPlayroomUnlock) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[375] + mi := &file_proto_Gameapi_proto_msgTypes[376] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22228,7 +22281,7 @@ func (x *ResPlayroomUnlock) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomUnlock.ProtoReflect.Descriptor instead. func (*ResPlayroomUnlock) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{375} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{376} } func (x *ResPlayroomUnlock) GetCode() RES_CODE { @@ -22261,7 +22314,7 @@ type ReqPlayroomUpvote struct { func (x *ReqPlayroomUpvote) Reset() { *x = ReqPlayroomUpvote{} - mi := &file_proto_Gameapi_proto_msgTypes[376] + mi := &file_proto_Gameapi_proto_msgTypes[377] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22273,7 +22326,7 @@ func (x *ReqPlayroomUpvote) String() string { func (*ReqPlayroomUpvote) ProtoMessage() {} func (x *ReqPlayroomUpvote) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[376] + mi := &file_proto_Gameapi_proto_msgTypes[377] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22286,7 +22339,7 @@ func (x *ReqPlayroomUpvote) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomUpvote.ProtoReflect.Descriptor instead. func (*ReqPlayroomUpvote) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{376} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{377} } func (x *ReqPlayroomUpvote) GetId() int64 { @@ -22307,7 +22360,7 @@ type ResPlayroomUpvote struct { func (x *ResPlayroomUpvote) Reset() { *x = ResPlayroomUpvote{} - mi := &file_proto_Gameapi_proto_msgTypes[377] + mi := &file_proto_Gameapi_proto_msgTypes[378] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22319,7 +22372,7 @@ func (x *ResPlayroomUpvote) String() string { func (*ResPlayroomUpvote) ProtoMessage() {} func (x *ResPlayroomUpvote) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[377] + mi := &file_proto_Gameapi_proto_msgTypes[378] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22332,7 +22385,7 @@ func (x *ResPlayroomUpvote) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomUpvote.ProtoReflect.Descriptor instead. func (*ResPlayroomUpvote) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{377} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{378} } func (x *ResPlayroomUpvote) GetCode() RES_CODE { @@ -22365,7 +22418,7 @@ type PlayroomDress struct { func (x *PlayroomDress) Reset() { *x = PlayroomDress{} - mi := &file_proto_Gameapi_proto_msgTypes[378] + mi := &file_proto_Gameapi_proto_msgTypes[379] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22377,7 +22430,7 @@ func (x *PlayroomDress) String() string { func (*PlayroomDress) ProtoMessage() {} func (x *PlayroomDress) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[378] + mi := &file_proto_Gameapi_proto_msgTypes[379] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22390,7 +22443,7 @@ func (x *PlayroomDress) ProtoReflect() protoreflect.Message { // Deprecated: Use PlayroomDress.ProtoReflect.Descriptor instead. func (*PlayroomDress) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{378} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{379} } func (x *PlayroomDress) GetList() []*PlayroomDressInfo { @@ -22412,7 +22465,7 @@ type PlayroomDressInfo struct { func (x *PlayroomDressInfo) Reset() { *x = PlayroomDressInfo{} - mi := &file_proto_Gameapi_proto_msgTypes[379] + mi := &file_proto_Gameapi_proto_msgTypes[380] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22424,7 +22477,7 @@ func (x *PlayroomDressInfo) String() string { func (*PlayroomDressInfo) ProtoMessage() {} func (x *PlayroomDressInfo) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[379] + mi := &file_proto_Gameapi_proto_msgTypes[380] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22437,7 +22490,7 @@ func (x *PlayroomDressInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use PlayroomDressInfo.ProtoReflect.Descriptor instead. func (*PlayroomDressInfo) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{379} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{380} } func (x *PlayroomDressInfo) GetId() int32 { @@ -22480,7 +22533,7 @@ type PlayroomAirInfo struct { func (x *PlayroomAirInfo) Reset() { *x = PlayroomAirInfo{} - mi := &file_proto_Gameapi_proto_msgTypes[380] + mi := &file_proto_Gameapi_proto_msgTypes[381] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22492,7 +22545,7 @@ func (x *PlayroomAirInfo) String() string { func (*PlayroomAirInfo) ProtoMessage() {} func (x *PlayroomAirInfo) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[380] + mi := &file_proto_Gameapi_proto_msgTypes[381] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22505,7 +22558,7 @@ func (x *PlayroomAirInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use PlayroomAirInfo.ProtoReflect.Descriptor instead. func (*PlayroomAirInfo) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{380} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{381} } func (x *PlayroomAirInfo) GetId() int32 { @@ -22548,7 +22601,7 @@ type PlayroomCollectInfo struct { func (x *PlayroomCollectInfo) Reset() { *x = PlayroomCollectInfo{} - mi := &file_proto_Gameapi_proto_msgTypes[381] + mi := &file_proto_Gameapi_proto_msgTypes[382] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22560,7 +22613,7 @@ func (x *PlayroomCollectInfo) String() string { func (*PlayroomCollectInfo) ProtoMessage() {} func (x *PlayroomCollectInfo) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[381] + mi := &file_proto_Gameapi_proto_msgTypes[382] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22573,7 +22626,7 @@ func (x *PlayroomCollectInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use PlayroomCollectInfo.ProtoReflect.Descriptor instead. func (*PlayroomCollectInfo) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{381} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{382} } func (x *PlayroomCollectInfo) GetId() int32 { @@ -22613,7 +22666,7 @@ type ReqPlayroomDressSet struct { func (x *ReqPlayroomDressSet) Reset() { *x = ReqPlayroomDressSet{} - mi := &file_proto_Gameapi_proto_msgTypes[382] + mi := &file_proto_Gameapi_proto_msgTypes[383] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22625,7 +22678,7 @@ func (x *ReqPlayroomDressSet) String() string { func (*ReqPlayroomDressSet) ProtoMessage() {} func (x *ReqPlayroomDressSet) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[382] + mi := &file_proto_Gameapi_proto_msgTypes[383] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22638,7 +22691,7 @@ func (x *ReqPlayroomDressSet) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomDressSet.ProtoReflect.Descriptor instead. func (*ReqPlayroomDressSet) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{382} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{383} } func (x *ReqPlayroomDressSet) GetDressSet() map[int32]int32 { @@ -22658,7 +22711,7 @@ type ResPlayroomDressSet struct { func (x *ResPlayroomDressSet) Reset() { *x = ResPlayroomDressSet{} - mi := &file_proto_Gameapi_proto_msgTypes[383] + mi := &file_proto_Gameapi_proto_msgTypes[384] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22670,7 +22723,7 @@ func (x *ResPlayroomDressSet) String() string { func (*ResPlayroomDressSet) ProtoMessage() {} func (x *ResPlayroomDressSet) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[383] + mi := &file_proto_Gameapi_proto_msgTypes[384] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22683,7 +22736,7 @@ func (x *ResPlayroomDressSet) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomDressSet.ProtoReflect.Descriptor instead. func (*ResPlayroomDressSet) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{383} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{384} } func (x *ResPlayroomDressSet) GetCode() RES_CODE { @@ -22709,7 +22762,7 @@ type ReqPlayroomPetAirSet struct { func (x *ReqPlayroomPetAirSet) Reset() { *x = ReqPlayroomPetAirSet{} - mi := &file_proto_Gameapi_proto_msgTypes[384] + mi := &file_proto_Gameapi_proto_msgTypes[385] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22721,7 +22774,7 @@ func (x *ReqPlayroomPetAirSet) String() string { func (*ReqPlayroomPetAirSet) ProtoMessage() {} func (x *ReqPlayroomPetAirSet) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[384] + mi := &file_proto_Gameapi_proto_msgTypes[385] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22734,7 +22787,7 @@ func (x *ReqPlayroomPetAirSet) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomPetAirSet.ProtoReflect.Descriptor instead. func (*ReqPlayroomPetAirSet) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{384} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{385} } func (x *ReqPlayroomPetAirSet) GetPetAirSet() int32 { @@ -22754,7 +22807,7 @@ type ResPlayroomPetAirSet struct { func (x *ResPlayroomPetAirSet) Reset() { *x = ResPlayroomPetAirSet{} - mi := &file_proto_Gameapi_proto_msgTypes[385] + mi := &file_proto_Gameapi_proto_msgTypes[386] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22766,7 +22819,7 @@ func (x *ResPlayroomPetAirSet) String() string { func (*ResPlayroomPetAirSet) ProtoMessage() {} func (x *ResPlayroomPetAirSet) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[385] + mi := &file_proto_Gameapi_proto_msgTypes[386] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22779,7 +22832,7 @@ func (x *ResPlayroomPetAirSet) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomPetAirSet.ProtoReflect.Descriptor instead. func (*ResPlayroomPetAirSet) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{385} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{386} } func (x *ResPlayroomPetAirSet) GetCode() RES_CODE { @@ -22804,7 +22857,7 @@ type ReqPlayroomWrokOutline struct { func (x *ReqPlayroomWrokOutline) Reset() { *x = ReqPlayroomWrokOutline{} - mi := &file_proto_Gameapi_proto_msgTypes[386] + mi := &file_proto_Gameapi_proto_msgTypes[387] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22816,7 +22869,7 @@ func (x *ReqPlayroomWrokOutline) String() string { func (*ReqPlayroomWrokOutline) ProtoMessage() {} func (x *ReqPlayroomWrokOutline) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[386] + mi := &file_proto_Gameapi_proto_msgTypes[387] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22829,7 +22882,7 @@ func (x *ReqPlayroomWrokOutline) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomWrokOutline.ProtoReflect.Descriptor instead. func (*ReqPlayroomWrokOutline) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{386} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{387} } type ResPlayroomWrokOutline struct { @@ -22842,7 +22895,7 @@ type ResPlayroomWrokOutline struct { func (x *ResPlayroomWrokOutline) Reset() { *x = ResPlayroomWrokOutline{} - mi := &file_proto_Gameapi_proto_msgTypes[387] + mi := &file_proto_Gameapi_proto_msgTypes[388] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22854,7 +22907,7 @@ func (x *ResPlayroomWrokOutline) String() string { func (*ResPlayroomWrokOutline) ProtoMessage() {} func (x *ResPlayroomWrokOutline) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[387] + mi := &file_proto_Gameapi_proto_msgTypes[388] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22867,7 +22920,7 @@ func (x *ResPlayroomWrokOutline) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomWrokOutline.ProtoReflect.Descriptor instead. func (*ResPlayroomWrokOutline) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{387} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{388} } func (x *ResPlayroomWrokOutline) GetCode() RES_CODE { @@ -22893,7 +22946,7 @@ type NofiPlayroomStatus struct { func (x *NofiPlayroomStatus) Reset() { *x = NofiPlayroomStatus{} - mi := &file_proto_Gameapi_proto_msgTypes[388] + mi := &file_proto_Gameapi_proto_msgTypes[389] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22905,7 +22958,7 @@ func (x *NofiPlayroomStatus) String() string { func (*NofiPlayroomStatus) ProtoMessage() {} func (x *NofiPlayroomStatus) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[388] + mi := &file_proto_Gameapi_proto_msgTypes[389] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22918,7 +22971,7 @@ func (x *NofiPlayroomStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use NofiPlayroomStatus.ProtoReflect.Descriptor instead. func (*NofiPlayroomStatus) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{388} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{389} } func (x *NofiPlayroomStatus) GetWorkOutline() int32 { @@ -22938,7 +22991,7 @@ type NotifyPlayroomWork struct { func (x *NotifyPlayroomWork) Reset() { *x = NotifyPlayroomWork{} - mi := &file_proto_Gameapi_proto_msgTypes[389] + mi := &file_proto_Gameapi_proto_msgTypes[390] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22950,7 +23003,7 @@ func (x *NotifyPlayroomWork) String() string { func (*NotifyPlayroomWork) ProtoMessage() {} func (x *NotifyPlayroomWork) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[389] + mi := &file_proto_Gameapi_proto_msgTypes[390] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22963,7 +23016,7 @@ func (x *NotifyPlayroomWork) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyPlayroomWork.ProtoReflect.Descriptor instead. func (*NotifyPlayroomWork) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{389} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{390} } func (x *NotifyPlayroomWork) GetStartTime() int32 { @@ -22991,7 +23044,7 @@ type NotifyPlayroomLose struct { func (x *NotifyPlayroomLose) Reset() { *x = NotifyPlayroomLose{} - mi := &file_proto_Gameapi_proto_msgTypes[390] + mi := &file_proto_Gameapi_proto_msgTypes[391] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23003,7 +23056,7 @@ func (x *NotifyPlayroomLose) String() string { func (*NotifyPlayroomLose) ProtoMessage() {} func (x *NotifyPlayroomLose) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[390] + mi := &file_proto_Gameapi_proto_msgTypes[391] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23016,7 +23069,7 @@ func (x *NotifyPlayroomLose) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyPlayroomLose.ProtoReflect.Descriptor instead. func (*NotifyPlayroomLose) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{390} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{391} } func (x *NotifyPlayroomLose) GetLoseItem() []*ItemInfo { @@ -23050,7 +23103,7 @@ type ChipInfo struct { func (x *ChipInfo) Reset() { *x = ChipInfo{} - mi := &file_proto_Gameapi_proto_msgTypes[391] + mi := &file_proto_Gameapi_proto_msgTypes[392] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23062,7 +23115,7 @@ func (x *ChipInfo) String() string { func (*ChipInfo) ProtoMessage() {} func (x *ChipInfo) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[391] + mi := &file_proto_Gameapi_proto_msgTypes[392] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23075,7 +23128,7 @@ func (x *ChipInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ChipInfo.ProtoReflect.Descriptor instead. func (*ChipInfo) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{391} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{392} } func (x *ChipInfo) GetUid() int64 { @@ -23104,7 +23157,7 @@ type NotifyPlayroomMood struct { func (x *NotifyPlayroomMood) Reset() { *x = NotifyPlayroomMood{} - mi := &file_proto_Gameapi_proto_msgTypes[392] + mi := &file_proto_Gameapi_proto_msgTypes[393] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23116,7 +23169,7 @@ func (x *NotifyPlayroomMood) String() string { func (*NotifyPlayroomMood) ProtoMessage() {} func (x *NotifyPlayroomMood) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[392] + mi := &file_proto_Gameapi_proto_msgTypes[393] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23129,7 +23182,7 @@ func (x *NotifyPlayroomMood) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyPlayroomMood.ProtoReflect.Descriptor instead. func (*NotifyPlayroomMood) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{392} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{393} } func (x *NotifyPlayroomMood) GetAllMood() int32 { @@ -23171,7 +23224,7 @@ type AdItem struct { func (x *AdItem) Reset() { *x = AdItem{} - mi := &file_proto_Gameapi_proto_msgTypes[393] + mi := &file_proto_Gameapi_proto_msgTypes[394] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23183,7 +23236,7 @@ func (x *AdItem) String() string { func (*AdItem) ProtoMessage() {} func (x *AdItem) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[393] + mi := &file_proto_Gameapi_proto_msgTypes[394] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23196,7 +23249,7 @@ func (x *AdItem) ProtoReflect() protoreflect.Message { // Deprecated: Use AdItem.ProtoReflect.Descriptor instead. func (*AdItem) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{393} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{394} } func (x *AdItem) GetWatch() int32 { @@ -23229,7 +23282,7 @@ type NotifyPlayroomKiss struct { func (x *NotifyPlayroomKiss) Reset() { *x = NotifyPlayroomKiss{} - mi := &file_proto_Gameapi_proto_msgTypes[394] + mi := &file_proto_Gameapi_proto_msgTypes[395] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23241,7 +23294,7 @@ func (x *NotifyPlayroomKiss) String() string { func (*NotifyPlayroomKiss) ProtoMessage() {} func (x *NotifyPlayroomKiss) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[394] + mi := &file_proto_Gameapi_proto_msgTypes[395] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23254,7 +23307,7 @@ func (x *NotifyPlayroomKiss) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyPlayroomKiss.ProtoReflect.Descriptor instead. func (*NotifyPlayroomKiss) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{394} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{395} } func (x *NotifyPlayroomKiss) GetKiss() int32 { @@ -23277,7 +23330,7 @@ type FriendRoom struct { func (x *FriendRoom) Reset() { *x = FriendRoom{} - mi := &file_proto_Gameapi_proto_msgTypes[395] + mi := &file_proto_Gameapi_proto_msgTypes[396] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23289,7 +23342,7 @@ func (x *FriendRoom) String() string { func (*FriendRoom) ProtoMessage() {} func (x *FriendRoom) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[395] + mi := &file_proto_Gameapi_proto_msgTypes[396] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23302,7 +23355,7 @@ func (x *FriendRoom) ProtoReflect() protoreflect.Message { // Deprecated: Use FriendRoom.ProtoReflect.Descriptor instead. func (*FriendRoom) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{395} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{396} } func (x *FriendRoom) GetUid() int64 { @@ -23353,7 +23406,7 @@ type RoomOpponent struct { func (x *RoomOpponent) Reset() { *x = RoomOpponent{} - mi := &file_proto_Gameapi_proto_msgTypes[396] + mi := &file_proto_Gameapi_proto_msgTypes[397] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23365,7 +23418,7 @@ func (x *RoomOpponent) String() string { func (*RoomOpponent) ProtoMessage() {} func (x *RoomOpponent) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[396] + mi := &file_proto_Gameapi_proto_msgTypes[397] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23378,7 +23431,7 @@ func (x *RoomOpponent) ProtoReflect() protoreflect.Message { // Deprecated: Use RoomOpponent.ProtoReflect.Descriptor instead. func (*RoomOpponent) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{396} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{397} } func (x *RoomOpponent) GetUid() int64 { @@ -23426,7 +23479,7 @@ type ReqPlayroomInfo struct { func (x *ReqPlayroomInfo) Reset() { *x = ReqPlayroomInfo{} - mi := &file_proto_Gameapi_proto_msgTypes[397] + mi := &file_proto_Gameapi_proto_msgTypes[398] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23438,7 +23491,7 @@ func (x *ReqPlayroomInfo) String() string { func (*ReqPlayroomInfo) ProtoMessage() {} func (x *ReqPlayroomInfo) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[397] + mi := &file_proto_Gameapi_proto_msgTypes[398] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23451,7 +23504,7 @@ func (x *ReqPlayroomInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomInfo.ProtoReflect.Descriptor instead. func (*ReqPlayroomInfo) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{397} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{398} } func (x *ReqPlayroomInfo) GetUid() int64 { @@ -23486,7 +23539,7 @@ type ResPlayroomInfo struct { func (x *ResPlayroomInfo) Reset() { *x = ResPlayroomInfo{} - mi := &file_proto_Gameapi_proto_msgTypes[398] + mi := &file_proto_Gameapi_proto_msgTypes[399] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23498,7 +23551,7 @@ func (x *ResPlayroomInfo) String() string { func (*ResPlayroomInfo) ProtoMessage() {} func (x *ResPlayroomInfo) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[398] + mi := &file_proto_Gameapi_proto_msgTypes[399] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23511,7 +23564,7 @@ func (x *ResPlayroomInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomInfo.ProtoReflect.Descriptor instead. func (*ResPlayroomInfo) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{398} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{399} } func (x *ResPlayroomInfo) GetUid() int64 { @@ -23643,7 +23696,7 @@ type ReqPlayroomFlip struct { func (x *ReqPlayroomFlip) Reset() { *x = ReqPlayroomFlip{} - mi := &file_proto_Gameapi_proto_msgTypes[399] + mi := &file_proto_Gameapi_proto_msgTypes[400] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23655,7 +23708,7 @@ func (x *ReqPlayroomFlip) String() string { func (*ReqPlayroomFlip) ProtoMessage() {} func (x *ReqPlayroomFlip) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[399] + mi := &file_proto_Gameapi_proto_msgTypes[400] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23668,7 +23721,7 @@ func (x *ReqPlayroomFlip) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomFlip.ProtoReflect.Descriptor instead. func (*ReqPlayroomFlip) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{399} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{400} } func (x *ReqPlayroomFlip) GetId() int32 { @@ -23690,7 +23743,7 @@ type ResPlayroomFlip struct { func (x *ResPlayroomFlip) Reset() { *x = ResPlayroomFlip{} - mi := &file_proto_Gameapi_proto_msgTypes[400] + mi := &file_proto_Gameapi_proto_msgTypes[401] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23702,7 +23755,7 @@ func (x *ResPlayroomFlip) String() string { func (*ResPlayroomFlip) ProtoMessage() {} func (x *ResPlayroomFlip) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[400] + mi := &file_proto_Gameapi_proto_msgTypes[401] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23715,7 +23768,7 @@ func (x *ResPlayroomFlip) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomFlip.ProtoReflect.Descriptor instead. func (*ResPlayroomFlip) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{400} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{401} } func (x *ResPlayroomFlip) GetCode() RES_CODE { @@ -23756,7 +23809,7 @@ type ReqPlayroomGuide struct { func (x *ReqPlayroomGuide) Reset() { *x = ReqPlayroomGuide{} - mi := &file_proto_Gameapi_proto_msgTypes[401] + mi := &file_proto_Gameapi_proto_msgTypes[402] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23768,7 +23821,7 @@ func (x *ReqPlayroomGuide) String() string { func (*ReqPlayroomGuide) ProtoMessage() {} func (x *ReqPlayroomGuide) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[401] + mi := &file_proto_Gameapi_proto_msgTypes[402] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23781,7 +23834,7 @@ func (x *ReqPlayroomGuide) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomGuide.ProtoReflect.Descriptor instead. func (*ReqPlayroomGuide) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{401} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{402} } func (x *ReqPlayroomGuide) GetType() int32 { @@ -23801,7 +23854,7 @@ type ResPlayroomGuide struct { func (x *ResPlayroomGuide) Reset() { *x = ResPlayroomGuide{} - mi := &file_proto_Gameapi_proto_msgTypes[402] + mi := &file_proto_Gameapi_proto_msgTypes[403] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23813,7 +23866,7 @@ func (x *ResPlayroomGuide) String() string { func (*ResPlayroomGuide) ProtoMessage() {} func (x *ResPlayroomGuide) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[402] + mi := &file_proto_Gameapi_proto_msgTypes[403] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23826,7 +23879,7 @@ func (x *ResPlayroomGuide) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomGuide.ProtoReflect.Descriptor instead. func (*ResPlayroomGuide) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{402} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{403} } func (x *ResPlayroomGuide) GetCode() RES_CODE { @@ -23853,7 +23906,7 @@ type ReqPlayroomFlipReward struct { func (x *ReqPlayroomFlipReward) Reset() { *x = ReqPlayroomFlipReward{} - mi := &file_proto_Gameapi_proto_msgTypes[403] + mi := &file_proto_Gameapi_proto_msgTypes[404] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23865,7 +23918,7 @@ func (x *ReqPlayroomFlipReward) String() string { func (*ReqPlayroomFlipReward) ProtoMessage() {} func (x *ReqPlayroomFlipReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[403] + mi := &file_proto_Gameapi_proto_msgTypes[404] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23878,7 +23931,7 @@ func (x *ReqPlayroomFlipReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomFlipReward.ProtoReflect.Descriptor instead. func (*ReqPlayroomFlipReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{403} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{404} } func (x *ReqPlayroomFlipReward) GetEmojiId() int32 { @@ -23898,7 +23951,7 @@ type ResPlayroomFlipReward struct { func (x *ResPlayroomFlipReward) Reset() { *x = ResPlayroomFlipReward{} - mi := &file_proto_Gameapi_proto_msgTypes[404] + mi := &file_proto_Gameapi_proto_msgTypes[405] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23910,7 +23963,7 @@ func (x *ResPlayroomFlipReward) String() string { func (*ResPlayroomFlipReward) ProtoMessage() {} func (x *ResPlayroomFlipReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[404] + mi := &file_proto_Gameapi_proto_msgTypes[405] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23923,7 +23976,7 @@ func (x *ResPlayroomFlipReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomFlipReward.ProtoReflect.Descriptor instead. func (*ResPlayroomFlipReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{404} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{405} } func (x *ResPlayroomFlipReward) GetCode() RES_CODE { @@ -23950,7 +24003,7 @@ type ReqPlayroomGame struct { func (x *ReqPlayroomGame) Reset() { *x = ReqPlayroomGame{} - mi := &file_proto_Gameapi_proto_msgTypes[405] + mi := &file_proto_Gameapi_proto_msgTypes[406] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23962,7 +24015,7 @@ func (x *ReqPlayroomGame) String() string { func (*ReqPlayroomGame) ProtoMessage() {} func (x *ReqPlayroomGame) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[405] + mi := &file_proto_Gameapi_proto_msgTypes[406] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23975,7 +24028,7 @@ func (x *ReqPlayroomGame) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomGame.ProtoReflect.Descriptor instead. func (*ReqPlayroomGame) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{405} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{406} } func (x *ReqPlayroomGame) GetType() int32 { @@ -24004,7 +24057,7 @@ type ResPlayroomGame struct { func (x *ResPlayroomGame) Reset() { *x = ResPlayroomGame{} - mi := &file_proto_Gameapi_proto_msgTypes[406] + mi := &file_proto_Gameapi_proto_msgTypes[407] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24016,7 +24069,7 @@ func (x *ResPlayroomGame) String() string { func (*ResPlayroomGame) ProtoMessage() {} func (x *ResPlayroomGame) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[406] + mi := &file_proto_Gameapi_proto_msgTypes[407] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24029,7 +24082,7 @@ func (x *ResPlayroomGame) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomGame.ProtoReflect.Descriptor instead. func (*ResPlayroomGame) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{406} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{407} } func (x *ResPlayroomGame) GetCode() RES_CODE { @@ -24071,7 +24124,7 @@ type ReqPlayroomGameShowReward struct { func (x *ReqPlayroomGameShowReward) Reset() { *x = ReqPlayroomGameShowReward{} - mi := &file_proto_Gameapi_proto_msgTypes[407] + mi := &file_proto_Gameapi_proto_msgTypes[408] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24083,7 +24136,7 @@ func (x *ReqPlayroomGameShowReward) String() string { func (*ReqPlayroomGameShowReward) ProtoMessage() {} func (x *ReqPlayroomGameShowReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[407] + mi := &file_proto_Gameapi_proto_msgTypes[408] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24096,7 +24149,7 @@ func (x *ReqPlayroomGameShowReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomGameShowReward.ProtoReflect.Descriptor instead. func (*ReqPlayroomGameShowReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{407} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{408} } func (x *ReqPlayroomGameShowReward) GetType() int32 { @@ -24122,7 +24175,7 @@ type ResPlayroomGameShowReward struct { func (x *ResPlayroomGameShowReward) Reset() { *x = ResPlayroomGameShowReward{} - mi := &file_proto_Gameapi_proto_msgTypes[408] + mi := &file_proto_Gameapi_proto_msgTypes[409] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24134,7 +24187,7 @@ func (x *ResPlayroomGameShowReward) String() string { func (*ResPlayroomGameShowReward) ProtoMessage() {} func (x *ResPlayroomGameShowReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[408] + mi := &file_proto_Gameapi_proto_msgTypes[409] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24147,7 +24200,7 @@ func (x *ResPlayroomGameShowReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomGameShowReward.ProtoReflect.Descriptor instead. func (*ResPlayroomGameShowReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{408} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{409} } func (x *ResPlayroomGameShowReward) GetItems() []*ItemInfo { @@ -24168,7 +24221,7 @@ type ReqPlayroomInteract struct { func (x *ReqPlayroomInteract) Reset() { *x = ReqPlayroomInteract{} - mi := &file_proto_Gameapi_proto_msgTypes[409] + mi := &file_proto_Gameapi_proto_msgTypes[410] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24180,7 +24233,7 @@ func (x *ReqPlayroomInteract) String() string { func (*ReqPlayroomInteract) ProtoMessage() {} func (x *ReqPlayroomInteract) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[409] + mi := &file_proto_Gameapi_proto_msgTypes[410] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24193,7 +24246,7 @@ func (x *ReqPlayroomInteract) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomInteract.ProtoReflect.Descriptor instead. func (*ReqPlayroomInteract) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{409} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{410} } func (x *ReqPlayroomInteract) GetId() int32 { @@ -24221,7 +24274,7 @@ type ResPlayroomInteract struct { func (x *ResPlayroomInteract) Reset() { *x = ResPlayroomInteract{} - mi := &file_proto_Gameapi_proto_msgTypes[410] + mi := &file_proto_Gameapi_proto_msgTypes[411] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24233,7 +24286,7 @@ func (x *ResPlayroomInteract) String() string { func (*ResPlayroomInteract) ProtoMessage() {} func (x *ResPlayroomInteract) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[410] + mi := &file_proto_Gameapi_proto_msgTypes[411] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24246,7 +24299,7 @@ func (x *ResPlayroomInteract) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomInteract.ProtoReflect.Descriptor instead. func (*ResPlayroomInteract) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{410} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{411} } func (x *ResPlayroomInteract) GetCode() RES_CODE { @@ -24280,7 +24333,7 @@ type ReqPlayroomSetRoom struct { func (x *ReqPlayroomSetRoom) Reset() { *x = ReqPlayroomSetRoom{} - mi := &file_proto_Gameapi_proto_msgTypes[411] + mi := &file_proto_Gameapi_proto_msgTypes[412] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24292,7 +24345,7 @@ func (x *ReqPlayroomSetRoom) String() string { func (*ReqPlayroomSetRoom) ProtoMessage() {} func (x *ReqPlayroomSetRoom) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[411] + mi := &file_proto_Gameapi_proto_msgTypes[412] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24305,7 +24358,7 @@ func (x *ReqPlayroomSetRoom) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomSetRoom.ProtoReflect.Descriptor instead. func (*ReqPlayroomSetRoom) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{411} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{412} } func (x *ReqPlayroomSetRoom) GetPlayroom() map[int32]int32 { @@ -24325,7 +24378,7 @@ type ResPlayroomSetRoom struct { func (x *ResPlayroomSetRoom) Reset() { *x = ResPlayroomSetRoom{} - mi := &file_proto_Gameapi_proto_msgTypes[412] + mi := &file_proto_Gameapi_proto_msgTypes[413] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24337,7 +24390,7 @@ func (x *ResPlayroomSetRoom) String() string { func (*ResPlayroomSetRoom) ProtoMessage() {} func (x *ResPlayroomSetRoom) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[412] + mi := &file_proto_Gameapi_proto_msgTypes[413] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24350,7 +24403,7 @@ func (x *ResPlayroomSetRoom) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomSetRoom.ProtoReflect.Descriptor instead. func (*ResPlayroomSetRoom) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{412} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{413} } func (x *ResPlayroomSetRoom) GetCode() RES_CODE { @@ -24377,7 +24430,7 @@ type ReqPlayroomSelectReward struct { func (x *ReqPlayroomSelectReward) Reset() { *x = ReqPlayroomSelectReward{} - mi := &file_proto_Gameapi_proto_msgTypes[413] + mi := &file_proto_Gameapi_proto_msgTypes[414] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24389,7 +24442,7 @@ func (x *ReqPlayroomSelectReward) String() string { func (*ReqPlayroomSelectReward) ProtoMessage() {} func (x *ReqPlayroomSelectReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[413] + mi := &file_proto_Gameapi_proto_msgTypes[414] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24402,7 +24455,7 @@ func (x *ReqPlayroomSelectReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomSelectReward.ProtoReflect.Descriptor instead. func (*ReqPlayroomSelectReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{413} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{414} } func (x *ReqPlayroomSelectReward) GetId() int32 { @@ -24429,7 +24482,7 @@ type ResPlayroomSelectReward struct { func (x *ResPlayroomSelectReward) Reset() { *x = ResPlayroomSelectReward{} - mi := &file_proto_Gameapi_proto_msgTypes[414] + mi := &file_proto_Gameapi_proto_msgTypes[415] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24441,7 +24494,7 @@ func (x *ResPlayroomSelectReward) String() string { func (*ResPlayroomSelectReward) ProtoMessage() {} func (x *ResPlayroomSelectReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[414] + mi := &file_proto_Gameapi_proto_msgTypes[415] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24454,7 +24507,7 @@ func (x *ResPlayroomSelectReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomSelectReward.ProtoReflect.Descriptor instead. func (*ResPlayroomSelectReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{414} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{415} } func (x *ResPlayroomSelectReward) GetCode() RES_CODE { @@ -24480,7 +24533,7 @@ type ReqPlayroomLose struct { func (x *ReqPlayroomLose) Reset() { *x = ReqPlayroomLose{} - mi := &file_proto_Gameapi_proto_msgTypes[415] + mi := &file_proto_Gameapi_proto_msgTypes[416] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24492,7 +24545,7 @@ func (x *ReqPlayroomLose) String() string { func (*ReqPlayroomLose) ProtoMessage() {} func (x *ReqPlayroomLose) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[415] + mi := &file_proto_Gameapi_proto_msgTypes[416] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24505,7 +24558,7 @@ func (x *ReqPlayroomLose) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomLose.ProtoReflect.Descriptor instead. func (*ReqPlayroomLose) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{415} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{416} } type ResPlayroomLose struct { @@ -24518,7 +24571,7 @@ type ResPlayroomLose struct { func (x *ResPlayroomLose) Reset() { *x = ResPlayroomLose{} - mi := &file_proto_Gameapi_proto_msgTypes[416] + mi := &file_proto_Gameapi_proto_msgTypes[417] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24530,7 +24583,7 @@ func (x *ResPlayroomLose) String() string { func (*ResPlayroomLose) ProtoMessage() {} func (x *ResPlayroomLose) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[416] + mi := &file_proto_Gameapi_proto_msgTypes[417] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24543,7 +24596,7 @@ func (x *ResPlayroomLose) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomLose.ProtoReflect.Descriptor instead. func (*ResPlayroomLose) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{416} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{417} } func (x *ResPlayroomLose) GetCode() RES_CODE { @@ -24569,7 +24622,7 @@ type ReqPlayroomWork struct { func (x *ReqPlayroomWork) Reset() { *x = ReqPlayroomWork{} - mi := &file_proto_Gameapi_proto_msgTypes[417] + mi := &file_proto_Gameapi_proto_msgTypes[418] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24581,7 +24634,7 @@ func (x *ReqPlayroomWork) String() string { func (*ReqPlayroomWork) ProtoMessage() {} func (x *ReqPlayroomWork) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[417] + mi := &file_proto_Gameapi_proto_msgTypes[418] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24594,7 +24647,7 @@ func (x *ReqPlayroomWork) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomWork.ProtoReflect.Descriptor instead. func (*ReqPlayroomWork) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{417} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{418} } type ResPlayroomWork struct { @@ -24607,7 +24660,7 @@ type ResPlayroomWork struct { func (x *ResPlayroomWork) Reset() { *x = ResPlayroomWork{} - mi := &file_proto_Gameapi_proto_msgTypes[418] + mi := &file_proto_Gameapi_proto_msgTypes[419] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24619,7 +24672,7 @@ func (x *ResPlayroomWork) String() string { func (*ResPlayroomWork) ProtoMessage() {} func (x *ResPlayroomWork) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[418] + mi := &file_proto_Gameapi_proto_msgTypes[419] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24632,7 +24685,7 @@ func (x *ResPlayroomWork) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomWork.ProtoReflect.Descriptor instead. func (*ResPlayroomWork) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{418} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{419} } func (x *ResPlayroomWork) GetCode() RES_CODE { @@ -24658,7 +24711,7 @@ type ReqPlayroomRest struct { func (x *ReqPlayroomRest) Reset() { *x = ReqPlayroomRest{} - mi := &file_proto_Gameapi_proto_msgTypes[419] + mi := &file_proto_Gameapi_proto_msgTypes[420] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24670,7 +24723,7 @@ func (x *ReqPlayroomRest) String() string { func (*ReqPlayroomRest) ProtoMessage() {} func (x *ReqPlayroomRest) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[419] + mi := &file_proto_Gameapi_proto_msgTypes[420] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24683,7 +24736,7 @@ func (x *ReqPlayroomRest) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomRest.ProtoReflect.Descriptor instead. func (*ReqPlayroomRest) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{419} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{420} } type ResPlayroomRest struct { @@ -24696,7 +24749,7 @@ type ResPlayroomRest struct { func (x *ResPlayroomRest) Reset() { *x = ResPlayroomRest{} - mi := &file_proto_Gameapi_proto_msgTypes[420] + mi := &file_proto_Gameapi_proto_msgTypes[421] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24708,7 +24761,7 @@ func (x *ResPlayroomRest) String() string { func (*ResPlayroomRest) ProtoMessage() {} func (x *ResPlayroomRest) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[420] + mi := &file_proto_Gameapi_proto_msgTypes[421] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24721,7 +24774,7 @@ func (x *ResPlayroomRest) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomRest.ProtoReflect.Descriptor instead. func (*ResPlayroomRest) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{420} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{421} } func (x *ResPlayroomRest) GetCode() RES_CODE { @@ -24747,7 +24800,7 @@ type ReqPlayroomDraw struct { func (x *ReqPlayroomDraw) Reset() { *x = ReqPlayroomDraw{} - mi := &file_proto_Gameapi_proto_msgTypes[421] + mi := &file_proto_Gameapi_proto_msgTypes[422] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24759,7 +24812,7 @@ func (x *ReqPlayroomDraw) String() string { func (*ReqPlayroomDraw) ProtoMessage() {} func (x *ReqPlayroomDraw) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[421] + mi := &file_proto_Gameapi_proto_msgTypes[422] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24772,7 +24825,7 @@ func (x *ReqPlayroomDraw) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomDraw.ProtoReflect.Descriptor instead. func (*ReqPlayroomDraw) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{421} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{422} } type ResPlayroomDraw struct { @@ -24786,7 +24839,7 @@ type ResPlayroomDraw struct { func (x *ResPlayroomDraw) Reset() { *x = ResPlayroomDraw{} - mi := &file_proto_Gameapi_proto_msgTypes[422] + mi := &file_proto_Gameapi_proto_msgTypes[423] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24798,7 +24851,7 @@ func (x *ResPlayroomDraw) String() string { func (*ResPlayroomDraw) ProtoMessage() {} func (x *ResPlayroomDraw) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[422] + mi := &file_proto_Gameapi_proto_msgTypes[423] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24811,7 +24864,7 @@ func (x *ResPlayroomDraw) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomDraw.ProtoReflect.Descriptor instead. func (*ResPlayroomDraw) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{422} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{423} } func (x *ResPlayroomDraw) GetCode() RES_CODE { @@ -24845,7 +24898,7 @@ type ReqPlayroomChip struct { func (x *ReqPlayroomChip) Reset() { *x = ReqPlayroomChip{} - mi := &file_proto_Gameapi_proto_msgTypes[423] + mi := &file_proto_Gameapi_proto_msgTypes[424] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24857,7 +24910,7 @@ func (x *ReqPlayroomChip) String() string { func (*ReqPlayroomChip) ProtoMessage() {} func (x *ReqPlayroomChip) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[423] + mi := &file_proto_Gameapi_proto_msgTypes[424] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24870,7 +24923,7 @@ func (x *ReqPlayroomChip) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomChip.ProtoReflect.Descriptor instead. func (*ReqPlayroomChip) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{423} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{424} } func (x *ReqPlayroomChip) GetUid() []int64 { @@ -24890,7 +24943,7 @@ type ResPlayroomChip struct { func (x *ResPlayroomChip) Reset() { *x = ResPlayroomChip{} - mi := &file_proto_Gameapi_proto_msgTypes[424] + mi := &file_proto_Gameapi_proto_msgTypes[425] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24902,7 +24955,7 @@ func (x *ResPlayroomChip) String() string { func (*ResPlayroomChip) ProtoMessage() {} func (x *ResPlayroomChip) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[424] + mi := &file_proto_Gameapi_proto_msgTypes[425] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24915,7 +24968,7 @@ func (x *ResPlayroomChip) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomChip.ProtoReflect.Descriptor instead. func (*ResPlayroomChip) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{424} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{425} } func (x *ResPlayroomChip) GetCode() RES_CODE { @@ -24941,7 +24994,7 @@ type ReqPlayroomBuyItem struct { func (x *ReqPlayroomBuyItem) Reset() { *x = ReqPlayroomBuyItem{} - mi := &file_proto_Gameapi_proto_msgTypes[425] + mi := &file_proto_Gameapi_proto_msgTypes[426] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24953,7 +25006,7 @@ func (x *ReqPlayroomBuyItem) String() string { func (*ReqPlayroomBuyItem) ProtoMessage() {} func (x *ReqPlayroomBuyItem) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[425] + mi := &file_proto_Gameapi_proto_msgTypes[426] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24966,7 +25019,7 @@ func (x *ReqPlayroomBuyItem) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomBuyItem.ProtoReflect.Descriptor instead. func (*ReqPlayroomBuyItem) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{425} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{426} } func (x *ReqPlayroomBuyItem) GetId() int32 { @@ -24986,7 +25039,7 @@ type ResPlayroomBuyItem struct { func (x *ResPlayroomBuyItem) Reset() { *x = ResPlayroomBuyItem{} - mi := &file_proto_Gameapi_proto_msgTypes[426] + mi := &file_proto_Gameapi_proto_msgTypes[427] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24998,7 +25051,7 @@ func (x *ResPlayroomBuyItem) String() string { func (*ResPlayroomBuyItem) ProtoMessage() {} func (x *ResPlayroomBuyItem) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[426] + mi := &file_proto_Gameapi_proto_msgTypes[427] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25011,7 +25064,7 @@ func (x *ResPlayroomBuyItem) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomBuyItem.ProtoReflect.Descriptor instead. func (*ResPlayroomBuyItem) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{426} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{427} } func (x *ResPlayroomBuyItem) GetCode() RES_CODE { @@ -25039,7 +25092,7 @@ type ReqPlayroomShop struct { func (x *ReqPlayroomShop) Reset() { *x = ReqPlayroomShop{} - mi := &file_proto_Gameapi_proto_msgTypes[427] + mi := &file_proto_Gameapi_proto_msgTypes[428] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25051,7 +25104,7 @@ func (x *ReqPlayroomShop) String() string { func (*ReqPlayroomShop) ProtoMessage() {} func (x *ReqPlayroomShop) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[427] + mi := &file_proto_Gameapi_proto_msgTypes[428] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25064,7 +25117,7 @@ func (x *ReqPlayroomShop) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomShop.ProtoReflect.Descriptor instead. func (*ReqPlayroomShop) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{427} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{428} } func (x *ReqPlayroomShop) GetId() int32 { @@ -25091,7 +25144,7 @@ type ResPlayroomShop struct { func (x *ResPlayroomShop) Reset() { *x = ResPlayroomShop{} - mi := &file_proto_Gameapi_proto_msgTypes[428] + mi := &file_proto_Gameapi_proto_msgTypes[429] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25103,7 +25156,7 @@ func (x *ResPlayroomShop) String() string { func (*ResPlayroomShop) ProtoMessage() {} func (x *ResPlayroomShop) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[428] + mi := &file_proto_Gameapi_proto_msgTypes[429] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25116,7 +25169,7 @@ func (x *ResPlayroomShop) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomShop.ProtoReflect.Descriptor instead. func (*ResPlayroomShop) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{428} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{429} } func (x *ResPlayroomShop) GetCode() RES_CODE { @@ -25142,7 +25195,7 @@ type ReqFriendTreasure struct { func (x *ReqFriendTreasure) Reset() { *x = ReqFriendTreasure{} - mi := &file_proto_Gameapi_proto_msgTypes[429] + mi := &file_proto_Gameapi_proto_msgTypes[430] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25154,7 +25207,7 @@ func (x *ReqFriendTreasure) String() string { func (*ReqFriendTreasure) ProtoMessage() {} func (x *ReqFriendTreasure) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[429] + mi := &file_proto_Gameapi_proto_msgTypes[430] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25167,7 +25220,7 @@ func (x *ReqFriendTreasure) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqFriendTreasure.ProtoReflect.Descriptor instead. func (*ReqFriendTreasure) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{429} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{430} } type ResFriendTreasure struct { @@ -25184,7 +25237,7 @@ type ResFriendTreasure struct { func (x *ResFriendTreasure) Reset() { *x = ResFriendTreasure{} - mi := &file_proto_Gameapi_proto_msgTypes[430] + mi := &file_proto_Gameapi_proto_msgTypes[431] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25196,7 +25249,7 @@ func (x *ResFriendTreasure) String() string { func (*ResFriendTreasure) ProtoMessage() {} func (x *ResFriendTreasure) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[430] + mi := &file_proto_Gameapi_proto_msgTypes[431] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25209,7 +25262,7 @@ func (x *ResFriendTreasure) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFriendTreasure.ProtoReflect.Descriptor instead. func (*ResFriendTreasure) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{430} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{431} } func (x *ResFriendTreasure) GetStatus() int32 { @@ -25269,7 +25322,7 @@ type TreasureInfo struct { func (x *TreasureInfo) Reset() { *x = TreasureInfo{} - mi := &file_proto_Gameapi_proto_msgTypes[431] + mi := &file_proto_Gameapi_proto_msgTypes[432] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25281,7 +25334,7 @@ func (x *TreasureInfo) String() string { func (*TreasureInfo) ProtoMessage() {} func (x *TreasureInfo) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[431] + mi := &file_proto_Gameapi_proto_msgTypes[432] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25294,7 +25347,7 @@ func (x *TreasureInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use TreasureInfo.ProtoReflect.Descriptor instead. func (*TreasureInfo) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{431} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{432} } func (x *TreasureInfo) GetPos() int32 { @@ -25356,7 +25409,7 @@ type ReqFriendTreasureStart struct { func (x *ReqFriendTreasureStart) Reset() { *x = ReqFriendTreasureStart{} - mi := &file_proto_Gameapi_proto_msgTypes[432] + mi := &file_proto_Gameapi_proto_msgTypes[433] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25368,7 +25421,7 @@ func (x *ReqFriendTreasureStart) String() string { func (*ReqFriendTreasureStart) ProtoMessage() {} func (x *ReqFriendTreasureStart) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[432] + mi := &file_proto_Gameapi_proto_msgTypes[433] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25381,7 +25434,7 @@ func (x *ReqFriendTreasureStart) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqFriendTreasureStart.ProtoReflect.Descriptor instead. func (*ReqFriendTreasureStart) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{432} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{433} } func (x *ReqFriendTreasureStart) GetList() []*TreasureInfo { @@ -25408,7 +25461,7 @@ type ResFriendTreasureStart struct { func (x *ResFriendTreasureStart) Reset() { *x = ResFriendTreasureStart{} - mi := &file_proto_Gameapi_proto_msgTypes[433] + mi := &file_proto_Gameapi_proto_msgTypes[434] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25420,7 +25473,7 @@ func (x *ResFriendTreasureStart) String() string { func (*ResFriendTreasureStart) ProtoMessage() {} func (x *ResFriendTreasureStart) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[433] + mi := &file_proto_Gameapi_proto_msgTypes[434] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25433,7 +25486,7 @@ func (x *ResFriendTreasureStart) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFriendTreasureStart.ProtoReflect.Descriptor instead. func (*ResFriendTreasureStart) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{433} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{434} } func (x *ResFriendTreasureStart) GetCode() RES_CODE { @@ -25458,7 +25511,7 @@ type ReqFriendTreasureEnd struct { func (x *ReqFriendTreasureEnd) Reset() { *x = ReqFriendTreasureEnd{} - mi := &file_proto_Gameapi_proto_msgTypes[434] + mi := &file_proto_Gameapi_proto_msgTypes[435] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25470,7 +25523,7 @@ func (x *ReqFriendTreasureEnd) String() string { func (*ReqFriendTreasureEnd) ProtoMessage() {} func (x *ReqFriendTreasureEnd) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[434] + mi := &file_proto_Gameapi_proto_msgTypes[435] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25483,7 +25536,7 @@ func (x *ReqFriendTreasureEnd) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqFriendTreasureEnd.ProtoReflect.Descriptor instead. func (*ReqFriendTreasureEnd) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{434} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{435} } type ResFriendTreasureEnd struct { @@ -25496,7 +25549,7 @@ type ResFriendTreasureEnd struct { func (x *ResFriendTreasureEnd) Reset() { *x = ResFriendTreasureEnd{} - mi := &file_proto_Gameapi_proto_msgTypes[435] + mi := &file_proto_Gameapi_proto_msgTypes[436] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25508,7 +25561,7 @@ func (x *ResFriendTreasureEnd) String() string { func (*ResFriendTreasureEnd) ProtoMessage() {} func (x *ResFriendTreasureEnd) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[435] + mi := &file_proto_Gameapi_proto_msgTypes[436] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25521,7 +25574,7 @@ func (x *ResFriendTreasureEnd) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFriendTreasureEnd.ProtoReflect.Descriptor instead. func (*ResFriendTreasureEnd) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{435} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{436} } func (x *ResFriendTreasureEnd) GetCode() RES_CODE { @@ -25547,7 +25600,7 @@ type ReqFriendTreasureFilp struct { func (x *ReqFriendTreasureFilp) Reset() { *x = ReqFriendTreasureFilp{} - mi := &file_proto_Gameapi_proto_msgTypes[436] + mi := &file_proto_Gameapi_proto_msgTypes[437] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25559,7 +25612,7 @@ func (x *ReqFriendTreasureFilp) String() string { func (*ReqFriendTreasureFilp) ProtoMessage() {} func (x *ReqFriendTreasureFilp) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[436] + mi := &file_proto_Gameapi_proto_msgTypes[437] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25572,7 +25625,7 @@ func (x *ReqFriendTreasureFilp) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqFriendTreasureFilp.ProtoReflect.Descriptor instead. func (*ReqFriendTreasureFilp) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{436} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{437} } func (x *ReqFriendTreasureFilp) GetPos() int32 { @@ -25592,7 +25645,7 @@ type ResFriendTreasureFilp struct { func (x *ResFriendTreasureFilp) Reset() { *x = ResFriendTreasureFilp{} - mi := &file_proto_Gameapi_proto_msgTypes[437] + mi := &file_proto_Gameapi_proto_msgTypes[438] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25604,7 +25657,7 @@ func (x *ResFriendTreasureFilp) String() string { func (*ResFriendTreasureFilp) ProtoMessage() {} func (x *ResFriendTreasureFilp) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[437] + mi := &file_proto_Gameapi_proto_msgTypes[438] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25617,7 +25670,7 @@ func (x *ResFriendTreasureFilp) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFriendTreasureFilp.ProtoReflect.Descriptor instead. func (*ResFriendTreasureFilp) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{437} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{438} } func (x *ResFriendTreasureFilp) GetCode() RES_CODE { @@ -25643,7 +25696,7 @@ type ResFriendTreasureStar struct { func (x *ResFriendTreasureStar) Reset() { *x = ResFriendTreasureStar{} - mi := &file_proto_Gameapi_proto_msgTypes[438] + mi := &file_proto_Gameapi_proto_msgTypes[439] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25655,7 +25708,7 @@ func (x *ResFriendTreasureStar) String() string { func (*ResFriendTreasureStar) ProtoMessage() {} func (x *ResFriendTreasureStar) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[438] + mi := &file_proto_Gameapi_proto_msgTypes[439] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25668,7 +25721,7 @@ func (x *ResFriendTreasureStar) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFriendTreasureStar.ProtoReflect.Descriptor instead. func (*ResFriendTreasureStar) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{438} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{439} } func (x *ResFriendTreasureStar) GetStar() int32 { @@ -25688,7 +25741,7 @@ type ReqKafkaLog struct { func (x *ReqKafkaLog) Reset() { *x = ReqKafkaLog{} - mi := &file_proto_Gameapi_proto_msgTypes[439] + mi := &file_proto_Gameapi_proto_msgTypes[440] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25700,7 +25753,7 @@ func (x *ReqKafkaLog) String() string { func (*ReqKafkaLog) ProtoMessage() {} func (x *ReqKafkaLog) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[439] + mi := &file_proto_Gameapi_proto_msgTypes[440] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25713,7 +25766,7 @@ func (x *ReqKafkaLog) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqKafkaLog.ProtoReflect.Descriptor instead. func (*ReqKafkaLog) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{439} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{440} } func (x *ReqKafkaLog) GetEvent() string { @@ -25738,7 +25791,7 @@ type ReqCollectInfo struct { func (x *ReqCollectInfo) Reset() { *x = ReqCollectInfo{} - mi := &file_proto_Gameapi_proto_msgTypes[440] + mi := &file_proto_Gameapi_proto_msgTypes[441] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25750,7 +25803,7 @@ func (x *ReqCollectInfo) String() string { func (*ReqCollectInfo) ProtoMessage() {} func (x *ReqCollectInfo) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[440] + mi := &file_proto_Gameapi_proto_msgTypes[441] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25763,7 +25816,7 @@ func (x *ReqCollectInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCollectInfo.ProtoReflect.Descriptor instead. func (*ReqCollectInfo) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{440} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{441} } type ResCollectInfo struct { @@ -25776,7 +25829,7 @@ type ResCollectInfo struct { func (x *ResCollectInfo) Reset() { *x = ResCollectInfo{} - mi := &file_proto_Gameapi_proto_msgTypes[441] + mi := &file_proto_Gameapi_proto_msgTypes[442] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25788,7 +25841,7 @@ func (x *ResCollectInfo) String() string { func (*ResCollectInfo) ProtoMessage() {} func (x *ResCollectInfo) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[441] + mi := &file_proto_Gameapi_proto_msgTypes[442] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25801,7 +25854,7 @@ func (x *ResCollectInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCollectInfo.ProtoReflect.Descriptor instead. func (*ResCollectInfo) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{441} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{442} } func (x *ResCollectInfo) GetId() []int32 { @@ -25828,7 +25881,7 @@ type CollectItem struct { func (x *CollectItem) Reset() { *x = CollectItem{} - mi := &file_proto_Gameapi_proto_msgTypes[442] + mi := &file_proto_Gameapi_proto_msgTypes[443] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25840,7 +25893,7 @@ func (x *CollectItem) String() string { func (*CollectItem) ProtoMessage() {} func (x *CollectItem) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[442] + mi := &file_proto_Gameapi_proto_msgTypes[443] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25853,7 +25906,7 @@ func (x *CollectItem) ProtoReflect() protoreflect.Message { // Deprecated: Use CollectItem.ProtoReflect.Descriptor instead. func (*CollectItem) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{442} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{443} } func (x *CollectItem) GetId() int32 { @@ -25879,7 +25932,7 @@ type ReqCollect struct { func (x *ReqCollect) Reset() { *x = ReqCollect{} - mi := &file_proto_Gameapi_proto_msgTypes[443] + mi := &file_proto_Gameapi_proto_msgTypes[444] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25891,7 +25944,7 @@ func (x *ReqCollect) String() string { func (*ReqCollect) ProtoMessage() {} func (x *ReqCollect) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[443] + mi := &file_proto_Gameapi_proto_msgTypes[444] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25904,7 +25957,7 @@ func (x *ReqCollect) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCollect.ProtoReflect.Descriptor instead. func (*ReqCollect) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{443} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{444} } func (x *ReqCollect) GetId() int32 { @@ -25924,7 +25977,7 @@ type ResCollect struct { func (x *ResCollect) Reset() { *x = ResCollect{} - mi := &file_proto_Gameapi_proto_msgTypes[444] + mi := &file_proto_Gameapi_proto_msgTypes[445] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25936,7 +25989,7 @@ func (x *ResCollect) String() string { func (*ResCollect) ProtoMessage() {} func (x *ResCollect) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[444] + mi := &file_proto_Gameapi_proto_msgTypes[445] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25949,7 +26002,7 @@ func (x *ResCollect) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCollect.ProtoReflect.Descriptor instead. func (*ResCollect) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{444} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{445} } func (x *ResCollect) GetCode() RES_CODE { @@ -25977,7 +26030,7 @@ type ReqCatnip struct { func (x *ReqCatnip) Reset() { *x = ReqCatnip{} - mi := &file_proto_Gameapi_proto_msgTypes[445] + mi := &file_proto_Gameapi_proto_msgTypes[446] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25989,7 +26042,7 @@ func (x *ReqCatnip) String() string { func (*ReqCatnip) ProtoMessage() {} func (x *ReqCatnip) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[445] + mi := &file_proto_Gameapi_proto_msgTypes[446] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26002,7 +26055,7 @@ func (x *ReqCatnip) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCatnip.ProtoReflect.Descriptor instead. func (*ReqCatnip) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{445} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{446} } type ResCatnip struct { @@ -26020,7 +26073,7 @@ type ResCatnip struct { func (x *ResCatnip) Reset() { *x = ResCatnip{} - mi := &file_proto_Gameapi_proto_msgTypes[446] + mi := &file_proto_Gameapi_proto_msgTypes[447] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26032,7 +26085,7 @@ func (x *ResCatnip) String() string { func (*ResCatnip) ProtoMessage() {} func (x *ResCatnip) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[446] + mi := &file_proto_Gameapi_proto_msgTypes[447] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26045,7 +26098,7 @@ func (x *ResCatnip) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCatnip.ProtoReflect.Descriptor instead. func (*ResCatnip) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{446} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{447} } func (x *ResCatnip) GetId() int32 { @@ -26106,19 +26159,15 @@ type CatnipGame struct { Reward []int32 `protobuf:"varint,4,rep,packed,name=Reward,proto3" json:"Reward,omitempty"` // 已领取进度奖励列表 [1,2,3] Partner *ResPlayerSimple `protobuf:"bytes,5,opt,name=Partner,proto3" json:"Partner,omitempty"` // 伙伴 Emoji int32 `protobuf:"varint,6,opt,name=Emoji,proto3" json:"Emoji,omitempty"` // 表情id -<<<<<<< HEAD - FriendProgress int32 `protobuf:"varint,7,opt,name=FriendProgress,proto3" json:"FriendProgress,omitempty"` // 好友进度 -======= SendEmoji int32 `protobuf:"varint,7,opt,name=SendEmoji,proto3" json:"SendEmoji,omitempty"` // 发送的表情id FriendProgress int32 `protobuf:"varint,8,opt,name=FriendProgress,proto3" json:"FriendProgress,omitempty"` // 好友进度; ->>>>>>> sdk unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *CatnipGame) Reset() { *x = CatnipGame{} - mi := &file_proto_Gameapi_proto_msgTypes[447] + mi := &file_proto_Gameapi_proto_msgTypes[448] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26130,7 +26179,7 @@ func (x *CatnipGame) String() string { func (*CatnipGame) ProtoMessage() {} func (x *CatnipGame) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[447] + mi := &file_proto_Gameapi_proto_msgTypes[448] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26143,7 +26192,7 @@ func (x *CatnipGame) ProtoReflect() protoreflect.Message { // Deprecated: Use CatnipGame.ProtoReflect.Descriptor instead. func (*CatnipGame) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{447} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{448} } func (x *CatnipGame) GetId() int32 { @@ -26188,6 +26237,13 @@ func (x *CatnipGame) GetEmoji() int32 { return 0 } +func (x *CatnipGame) GetSendEmoji() int32 { + if x != nil { + return x.SendEmoji + } + return 0 +} + func (x *CatnipGame) GetFriendProgress() int32 { if x != nil { return x.FriendProgress @@ -26207,7 +26263,7 @@ type CatnipInvite struct { func (x *CatnipInvite) Reset() { *x = CatnipInvite{} - mi := &file_proto_Gameapi_proto_msgTypes[448] + mi := &file_proto_Gameapi_proto_msgTypes[449] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26219,7 +26275,7 @@ func (x *CatnipInvite) String() string { func (*CatnipInvite) ProtoMessage() {} func (x *CatnipInvite) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[448] + mi := &file_proto_Gameapi_proto_msgTypes[449] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26232,7 +26288,7 @@ func (x *CatnipInvite) ProtoReflect() protoreflect.Message { // Deprecated: Use CatnipInvite.ProtoReflect.Descriptor instead. func (*CatnipInvite) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{448} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{449} } func (x *CatnipInvite) GetUid() int64 { @@ -26274,7 +26330,7 @@ type ReqCatnipInvite struct { func (x *ReqCatnipInvite) Reset() { *x = ReqCatnipInvite{} - mi := &file_proto_Gameapi_proto_msgTypes[449] + mi := &file_proto_Gameapi_proto_msgTypes[450] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26286,7 +26342,7 @@ func (x *ReqCatnipInvite) String() string { func (*ReqCatnipInvite) ProtoMessage() {} func (x *ReqCatnipInvite) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[449] + mi := &file_proto_Gameapi_proto_msgTypes[450] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26299,7 +26355,7 @@ func (x *ReqCatnipInvite) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCatnipInvite.ProtoReflect.Descriptor instead. func (*ReqCatnipInvite) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{449} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{450} } func (x *ReqCatnipInvite) GetId() int32 { @@ -26327,7 +26383,7 @@ type ResCatnipInvite struct { func (x *ResCatnipInvite) Reset() { *x = ResCatnipInvite{} - mi := &file_proto_Gameapi_proto_msgTypes[450] + mi := &file_proto_Gameapi_proto_msgTypes[451] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26339,7 +26395,7 @@ func (x *ResCatnipInvite) String() string { func (*ResCatnipInvite) ProtoMessage() {} func (x *ResCatnipInvite) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[450] + mi := &file_proto_Gameapi_proto_msgTypes[451] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26352,7 +26408,7 @@ func (x *ResCatnipInvite) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCatnipInvite.ProtoReflect.Descriptor instead. func (*ResCatnipInvite) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{450} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{451} } func (x *ResCatnipInvite) GetCode() RES_CODE { @@ -26387,7 +26443,7 @@ type ReqCatnipAgree struct { func (x *ReqCatnipAgree) Reset() { *x = ReqCatnipAgree{} - mi := &file_proto_Gameapi_proto_msgTypes[451] + mi := &file_proto_Gameapi_proto_msgTypes[452] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26399,7 +26455,7 @@ func (x *ReqCatnipAgree) String() string { func (*ReqCatnipAgree) ProtoMessage() {} func (x *ReqCatnipAgree) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[451] + mi := &file_proto_Gameapi_proto_msgTypes[452] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26412,7 +26468,7 @@ func (x *ReqCatnipAgree) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCatnipAgree.ProtoReflect.Descriptor instead. func (*ReqCatnipAgree) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{451} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{452} } func (x *ReqCatnipAgree) GetId() int32 { @@ -26440,7 +26496,7 @@ type ResCatnipAgree struct { func (x *ResCatnipAgree) Reset() { *x = ResCatnipAgree{} - mi := &file_proto_Gameapi_proto_msgTypes[452] + mi := &file_proto_Gameapi_proto_msgTypes[453] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26452,7 +26508,7 @@ func (x *ResCatnipAgree) String() string { func (*ResCatnipAgree) ProtoMessage() {} func (x *ResCatnipAgree) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[452] + mi := &file_proto_Gameapi_proto_msgTypes[453] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26465,7 +26521,7 @@ func (x *ResCatnipAgree) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCatnipAgree.ProtoReflect.Descriptor instead. func (*ResCatnipAgree) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{452} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{453} } func (x *ResCatnipAgree) GetCode() RES_CODE { @@ -26499,7 +26555,7 @@ type ReqCatnipRefuse struct { func (x *ReqCatnipRefuse) Reset() { *x = ReqCatnipRefuse{} - mi := &file_proto_Gameapi_proto_msgTypes[453] + mi := &file_proto_Gameapi_proto_msgTypes[454] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26511,7 +26567,7 @@ func (x *ReqCatnipRefuse) String() string { func (*ReqCatnipRefuse) ProtoMessage() {} func (x *ReqCatnipRefuse) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[453] + mi := &file_proto_Gameapi_proto_msgTypes[454] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26524,7 +26580,7 @@ func (x *ReqCatnipRefuse) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCatnipRefuse.ProtoReflect.Descriptor instead. func (*ReqCatnipRefuse) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{453} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{454} } func (x *ReqCatnipRefuse) GetId() int32 { @@ -26552,7 +26608,7 @@ type ResCatnipRefuse struct { func (x *ResCatnipRefuse) Reset() { *x = ResCatnipRefuse{} - mi := &file_proto_Gameapi_proto_msgTypes[454] + mi := &file_proto_Gameapi_proto_msgTypes[455] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26564,7 +26620,7 @@ func (x *ResCatnipRefuse) String() string { func (*ResCatnipRefuse) ProtoMessage() {} func (x *ResCatnipRefuse) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[454] + mi := &file_proto_Gameapi_proto_msgTypes[455] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26577,7 +26633,7 @@ func (x *ResCatnipRefuse) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCatnipRefuse.ProtoReflect.Descriptor instead. func (*ResCatnipRefuse) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{454} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{455} } func (x *ResCatnipRefuse) GetCode() RES_CODE { @@ -26611,7 +26667,7 @@ type ReqCatnipMultiply struct { func (x *ReqCatnipMultiply) Reset() { *x = ReqCatnipMultiply{} - mi := &file_proto_Gameapi_proto_msgTypes[455] + mi := &file_proto_Gameapi_proto_msgTypes[456] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26623,7 +26679,7 @@ func (x *ReqCatnipMultiply) String() string { func (*ReqCatnipMultiply) ProtoMessage() {} func (x *ReqCatnipMultiply) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[455] + mi := &file_proto_Gameapi_proto_msgTypes[456] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26636,7 +26692,7 @@ func (x *ReqCatnipMultiply) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCatnipMultiply.ProtoReflect.Descriptor instead. func (*ReqCatnipMultiply) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{455} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{456} } func (x *ReqCatnipMultiply) GetMultiply() int32 { @@ -26657,7 +26713,7 @@ type ResCatnipMultiply struct { func (x *ResCatnipMultiply) Reset() { *x = ResCatnipMultiply{} - mi := &file_proto_Gameapi_proto_msgTypes[456] + mi := &file_proto_Gameapi_proto_msgTypes[457] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26669,7 +26725,7 @@ func (x *ResCatnipMultiply) String() string { func (*ResCatnipMultiply) ProtoMessage() {} func (x *ResCatnipMultiply) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[456] + mi := &file_proto_Gameapi_proto_msgTypes[457] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26682,7 +26738,7 @@ func (x *ResCatnipMultiply) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCatnipMultiply.ProtoReflect.Descriptor instead. func (*ResCatnipMultiply) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{456} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{457} } func (x *ResCatnipMultiply) GetCode() RES_CODE { @@ -26716,7 +26772,7 @@ type ReqCatnipPlay struct { func (x *ReqCatnipPlay) Reset() { *x = ReqCatnipPlay{} - mi := &file_proto_Gameapi_proto_msgTypes[457] + mi := &file_proto_Gameapi_proto_msgTypes[458] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26728,7 +26784,7 @@ func (x *ReqCatnipPlay) String() string { func (*ReqCatnipPlay) ProtoMessage() {} func (x *ReqCatnipPlay) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[457] + mi := &file_proto_Gameapi_proto_msgTypes[458] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26741,7 +26797,7 @@ func (x *ReqCatnipPlay) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCatnipPlay.ProtoReflect.Descriptor instead. func (*ReqCatnipPlay) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{457} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{458} } func (x *ReqCatnipPlay) GetId() int32 { @@ -26762,7 +26818,7 @@ type ResCatnipPlay struct { func (x *ResCatnipPlay) Reset() { *x = ResCatnipPlay{} - mi := &file_proto_Gameapi_proto_msgTypes[458] + mi := &file_proto_Gameapi_proto_msgTypes[459] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26774,7 +26830,7 @@ func (x *ResCatnipPlay) String() string { func (*ResCatnipPlay) ProtoMessage() {} func (x *ResCatnipPlay) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[458] + mi := &file_proto_Gameapi_proto_msgTypes[459] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26787,7 +26843,7 @@ func (x *ResCatnipPlay) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCatnipPlay.ProtoReflect.Descriptor instead. func (*ResCatnipPlay) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{458} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{459} } func (x *ResCatnipPlay) GetCode() RES_CODE { @@ -26821,7 +26877,7 @@ type ReqCatnipReward struct { func (x *ReqCatnipReward) Reset() { *x = ReqCatnipReward{} - mi := &file_proto_Gameapi_proto_msgTypes[459] + mi := &file_proto_Gameapi_proto_msgTypes[460] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26833,7 +26889,7 @@ func (x *ReqCatnipReward) String() string { func (*ReqCatnipReward) ProtoMessage() {} func (x *ReqCatnipReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[459] + mi := &file_proto_Gameapi_proto_msgTypes[460] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26846,7 +26902,7 @@ func (x *ReqCatnipReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCatnipReward.ProtoReflect.Descriptor instead. func (*ReqCatnipReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{459} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{460} } func (x *ReqCatnipReward) GetId() int32 { @@ -26866,7 +26922,7 @@ type ResCatnipReward struct { func (x *ResCatnipReward) Reset() { *x = ResCatnipReward{} - mi := &file_proto_Gameapi_proto_msgTypes[460] + mi := &file_proto_Gameapi_proto_msgTypes[461] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26878,7 +26934,7 @@ func (x *ResCatnipReward) String() string { func (*ResCatnipReward) ProtoMessage() {} func (x *ResCatnipReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[460] + mi := &file_proto_Gameapi_proto_msgTypes[461] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26891,7 +26947,7 @@ func (x *ResCatnipReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCatnipReward.ProtoReflect.Descriptor instead. func (*ResCatnipReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{460} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{461} } func (x *ResCatnipReward) GetCode() RES_CODE { @@ -26917,7 +26973,7 @@ type ReqCatnipGrandReward struct { func (x *ReqCatnipGrandReward) Reset() { *x = ReqCatnipGrandReward{} - mi := &file_proto_Gameapi_proto_msgTypes[461] + mi := &file_proto_Gameapi_proto_msgTypes[462] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26929,7 +26985,7 @@ func (x *ReqCatnipGrandReward) String() string { func (*ReqCatnipGrandReward) ProtoMessage() {} func (x *ReqCatnipGrandReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[461] + mi := &file_proto_Gameapi_proto_msgTypes[462] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26942,7 +26998,7 @@ func (x *ReqCatnipGrandReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCatnipGrandReward.ProtoReflect.Descriptor instead. func (*ReqCatnipGrandReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{461} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{462} } type ResCatnipGrandReward struct { @@ -26955,7 +27011,7 @@ type ResCatnipGrandReward struct { func (x *ResCatnipGrandReward) Reset() { *x = ResCatnipGrandReward{} - mi := &file_proto_Gameapi_proto_msgTypes[462] + mi := &file_proto_Gameapi_proto_msgTypes[463] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26967,7 +27023,7 @@ func (x *ResCatnipGrandReward) String() string { func (*ResCatnipGrandReward) ProtoMessage() {} func (x *ResCatnipGrandReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[462] + mi := &file_proto_Gameapi_proto_msgTypes[463] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26980,7 +27036,7 @@ func (x *ResCatnipGrandReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCatnipGrandReward.ProtoReflect.Descriptor instead. func (*ResCatnipGrandReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{462} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{463} } func (x *ResCatnipGrandReward) GetCode() RES_CODE { @@ -27008,7 +27064,7 @@ type ReqCatnipEmoji struct { func (x *ReqCatnipEmoji) Reset() { *x = ReqCatnipEmoji{} - mi := &file_proto_Gameapi_proto_msgTypes[463] + mi := &file_proto_Gameapi_proto_msgTypes[464] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27020,7 +27076,7 @@ func (x *ReqCatnipEmoji) String() string { func (*ReqCatnipEmoji) ProtoMessage() {} func (x *ReqCatnipEmoji) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[463] + mi := &file_proto_Gameapi_proto_msgTypes[464] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27033,7 +27089,7 @@ func (x *ReqCatnipEmoji) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCatnipEmoji.ProtoReflect.Descriptor instead. func (*ReqCatnipEmoji) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{463} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{464} } func (x *ReqCatnipEmoji) GetId() int32 { @@ -27062,7 +27118,7 @@ type ResCatnipEmoji struct { func (x *ResCatnipEmoji) Reset() { *x = ResCatnipEmoji{} - mi := &file_proto_Gameapi_proto_msgTypes[464] + mi := &file_proto_Gameapi_proto_msgTypes[465] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27074,7 +27130,7 @@ func (x *ResCatnipEmoji) String() string { func (*ResCatnipEmoji) ProtoMessage() {} func (x *ResCatnipEmoji) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[464] + mi := &file_proto_Gameapi_proto_msgTypes[465] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27087,7 +27143,7 @@ func (x *ResCatnipEmoji) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCatnipEmoji.ProtoReflect.Descriptor instead. func (*ResCatnipEmoji) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{464} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{465} } func (x *ResCatnipEmoji) GetCode() RES_CODE { @@ -27129,7 +27185,7 @@ type AdminReq struct { func (x *AdminReq) Reset() { *x = AdminReq{} - mi := &file_proto_Gameapi_proto_msgTypes[465] + mi := &file_proto_Gameapi_proto_msgTypes[466] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27141,7 +27197,7 @@ func (x *AdminReq) String() string { func (*AdminReq) ProtoMessage() {} func (x *AdminReq) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[465] + mi := &file_proto_Gameapi_proto_msgTypes[466] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27154,7 +27210,7 @@ func (x *AdminReq) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminReq.ProtoReflect.Descriptor instead. func (*AdminReq) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{465} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{466} } func (x *AdminReq) GetFunc() string { @@ -27181,7 +27237,7 @@ type AdminRes struct { func (x *AdminRes) Reset() { *x = AdminRes{} - mi := &file_proto_Gameapi_proto_msgTypes[466] + mi := &file_proto_Gameapi_proto_msgTypes[467] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27193,7 +27249,7 @@ func (x *AdminRes) String() string { func (*AdminRes) ProtoMessage() {} func (x *AdminRes) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[466] + mi := &file_proto_Gameapi_proto_msgTypes[467] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27206,7 +27262,7 @@ func (x *AdminRes) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminRes.ProtoReflect.Descriptor instead. func (*AdminRes) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{466} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{467} } func (x *AdminRes) GetFunc() string { @@ -27232,7 +27288,7 @@ type ReqAdminInfo struct { func (x *ReqAdminInfo) Reset() { *x = ReqAdminInfo{} - mi := &file_proto_Gameapi_proto_msgTypes[467] + mi := &file_proto_Gameapi_proto_msgTypes[468] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27244,7 +27300,7 @@ func (x *ReqAdminInfo) String() string { func (*ReqAdminInfo) ProtoMessage() {} func (x *ReqAdminInfo) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[467] + mi := &file_proto_Gameapi_proto_msgTypes[468] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27257,7 +27313,7 @@ func (x *ReqAdminInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAdminInfo.ProtoReflect.Descriptor instead. func (*ReqAdminInfo) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{467} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{468} } func (x *ReqAdminInfo) GetUid() int64 { @@ -27275,7 +27331,7 @@ type ReqReloadServerMail struct { func (x *ReqReloadServerMail) Reset() { *x = ReqReloadServerMail{} - mi := &file_proto_Gameapi_proto_msgTypes[468] + mi := &file_proto_Gameapi_proto_msgTypes[469] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27287,7 +27343,7 @@ func (x *ReqReloadServerMail) String() string { func (*ReqReloadServerMail) ProtoMessage() {} func (x *ReqReloadServerMail) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[468] + mi := &file_proto_Gameapi_proto_msgTypes[469] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27300,7 +27356,7 @@ func (x *ReqReloadServerMail) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqReloadServerMail.ProtoReflect.Descriptor instead. func (*ReqReloadServerMail) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{468} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{469} } type ReqServerInfo struct { @@ -27311,7 +27367,7 @@ type ReqServerInfo struct { func (x *ReqServerInfo) Reset() { *x = ReqServerInfo{} - mi := &file_proto_Gameapi_proto_msgTypes[469] + mi := &file_proto_Gameapi_proto_msgTypes[470] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27323,7 +27379,7 @@ func (x *ReqServerInfo) String() string { func (*ReqServerInfo) ProtoMessage() {} func (x *ReqServerInfo) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[469] + mi := &file_proto_Gameapi_proto_msgTypes[470] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27336,7 +27392,7 @@ func (x *ReqServerInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqServerInfo.ProtoReflect.Descriptor instead. func (*ReqServerInfo) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{469} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{470} } type ReqReload struct { @@ -27347,7 +27403,7 @@ type ReqReload struct { func (x *ReqReload) Reset() { *x = ReqReload{} - mi := &file_proto_Gameapi_proto_msgTypes[470] + mi := &file_proto_Gameapi_proto_msgTypes[471] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27359,7 +27415,7 @@ func (x *ReqReload) String() string { func (*ReqReload) ProtoMessage() {} func (x *ReqReload) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[470] + mi := &file_proto_Gameapi_proto_msgTypes[471] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27372,7 +27428,7 @@ func (x *ReqReload) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqReload.ProtoReflect.Descriptor instead. func (*ReqReload) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{470} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{471} } type ReqAdminGm struct { @@ -27385,7 +27441,7 @@ type ReqAdminGm struct { func (x *ReqAdminGm) Reset() { *x = ReqAdminGm{} - mi := &file_proto_Gameapi_proto_msgTypes[471] + mi := &file_proto_Gameapi_proto_msgTypes[472] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27397,7 +27453,7 @@ func (x *ReqAdminGm) String() string { func (*ReqAdminGm) ProtoMessage() {} func (x *ReqAdminGm) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[471] + mi := &file_proto_Gameapi_proto_msgTypes[472] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27410,7 +27466,7 @@ func (x *ReqAdminGm) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAdminGm.ProtoReflect.Descriptor instead. func (*ReqAdminGm) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{471} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{472} } func (x *ReqAdminGm) GetUid() int64 { @@ -27438,7 +27494,7 @@ type ReqAdminBan struct { func (x *ReqAdminBan) Reset() { *x = ReqAdminBan{} - mi := &file_proto_Gameapi_proto_msgTypes[472] + mi := &file_proto_Gameapi_proto_msgTypes[473] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27450,7 +27506,7 @@ func (x *ReqAdminBan) String() string { func (*ReqAdminBan) ProtoMessage() {} func (x *ReqAdminBan) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[472] + mi := &file_proto_Gameapi_proto_msgTypes[473] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27463,7 +27519,7 @@ func (x *ReqAdminBan) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAdminBan.ProtoReflect.Descriptor instead. func (*ReqAdminBan) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{472} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{473} } func (x *ReqAdminBan) GetUid() int64 { @@ -27498,7 +27554,7 @@ type ReqAdminShipping struct { func (x *ReqAdminShipping) Reset() { *x = ReqAdminShipping{} - mi := &file_proto_Gameapi_proto_msgTypes[473] + mi := &file_proto_Gameapi_proto_msgTypes[474] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27510,7 +27566,7 @@ func (x *ReqAdminShipping) String() string { func (*ReqAdminShipping) ProtoMessage() {} func (x *ReqAdminShipping) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[473] + mi := &file_proto_Gameapi_proto_msgTypes[474] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27523,7 +27579,7 @@ func (x *ReqAdminShipping) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAdminShipping.ProtoReflect.Descriptor instead. func (*ReqAdminShipping) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{473} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{474} } func (x *ReqAdminShipping) GetOrderSn() string { @@ -28490,7 +28546,7 @@ const file_proto_Gameapi_proto_rawDesc = "" + "\x04Code\x18\x01 \x01(\x05R\x04Code\x12-\n" + "\x04List\x18\x02 \x03(\v2\x19.tutorial.ResPlayerSimpleR\x04List\")\n" + "\x15ReqFriendPlayerSimple\x12\x10\n" + - "\x03Uid\x18\x01 \x01(\x03R\x03Uid\"\xf9\x06\n" + + "\x03Uid\x18\x01 \x01(\x03R\x03Uid\"\x93\a\n" + "\x15ResFriendPlayerSimple\x12\x10\n" + "\x03Uid\x18\x01 \x01(\x03R\x03Uid\x12\x12\n" + "\x04Name\x18\x02 \x01(\tR\x04Name\x12\x12\n" + @@ -28511,7 +28567,8 @@ const file_proto_Gameapi_proto_rawDesc = "" + "\x04Last\x18\x10 \x01(\v2\x10.tutorial.ActLogR\x04Last\x12O\n" + "\n" + "Physiology\x18\x11 \x03(\v2/.tutorial.ResFriendPlayerSimple.PhysiologyEntryR\n" + - "Physiology\x1a8\n" + + "Physiology\x12\x18\n" + + "\aPetName\x18\x12 \x01(\tR\aPetName\x1a8\n" + "\n" + "EmojiEntry\x12\x10\n" + "\x03key\x18\x01 \x01(\x05R\x03key\x12\x14\n" + @@ -28655,11 +28712,13 @@ const file_proto_Gameapi_proto_rawDesc = "" + "\x14ReqFriendReplyHandle\x12\x14\n" + "\x05LogId\x18\x01 \x01(\x05R\x05LogId\x12\x14\n" + "\x05Param\x18\x02 \x01(\tR\x05Param\x12\x12\n" + - "\x04Type\x18\x03 \x01(\x05R\x04Type\"f\n" + + "\x04Type\x18\x03 \x01(\x05R\x04Type\"\xbc\x01\n" + "\x14ResFriendReplyHandle\x12&\n" + "\x04Code\x18\x01 \x01(\x0e2\x12.tutorial.RES_CODER\x04Code\x12\x10\n" + "\x03Msg\x18\x02 \x01(\tR\x03Msg\x12\x14\n" + - "\x05LogId\x18\x03 \x01(\x05R\x05LogId\"E\n" + + "\x05LogId\x18\x03 \x01(\x05R\x05LogId\x12\x12\n" + + "\x04Type\x18\x04 \x01(\x05R\x04Type\x12@\n" + + "\aErrType\x18\x05 \x01(\x0e2&.tutorial.FRIEND_REPLY_HANDLE_ERR_TYPER\aErrType\"E\n" + "\x0fResFriendBubble\x122\n" + "\x06Bubble\x18\x01 \x03(\v2\x1a.tutorial.FriendBubbleInfoR\x06Bubble\"#\n" + "\x11ReqFriendTLUpvote\x12\x0e\n" + @@ -28677,13 +28736,10 @@ const file_proto_Gameapi_proto_rawDesc = "" + "\x14ResFriendApplyNotify\x121\n" + "\x06Player\x18\x01 \x01(\v2\x19.tutorial.ResPlayerSimpleR\x06Player\x12\x12\n" + "\x04Type\x18\x02 \x01(\x05R\x04Type\x12\x12\n" + -<<<<<<< HEAD -======= "\x04Time\x18\x03 \x01(\x05R\x04Time\"l\n" + "\x14ResFriendReplyNotify\x12,\n" + "\x04info\x18\x01 \x01(\v2\x18.tutorial.ResFriendReplyR\x04info\x12\x12\n" + "\x04Type\x18\x02 \x01(\x05R\x04Type\x12\x12\n" + ->>>>>>> sdk "\x04Time\x18\x03 \x01(\x05R\x04Time\"6\n" + "\x0eReqApplyFriend\x12\x10\n" + "\x03Uid\x18\x01 \x01(\x03R\x03Uid\x12\x12\n" + @@ -29474,7 +29530,7 @@ const file_proto_Gameapi_proto_rawDesc = "" + "\bMultiply\x18\x06 \x01(\x05R\bMultiply\x126\n" + "\n" + "FriendList\x18\a \x03(\v2\x16.tutorial.CatnipInviteR\n" + - "FriendList\"\xdb\x01\n" + + "FriendList\"\xf9\x01\n" + "\n" + "CatnipGame\x12\x0e\n" + "\x02Id\x18\x01 \x01(\x05R\x02Id\x12\x16\n" + @@ -29482,8 +29538,9 @@ const file_proto_Gameapi_proto_rawDesc = "" + "\bProgress\x18\x03 \x01(\x05R\bProgress\x12\x16\n" + "\x06Reward\x18\x04 \x03(\x05R\x06Reward\x123\n" + "\aPartner\x18\x05 \x01(\v2\x19.tutorial.ResPlayerSimpleR\aPartner\x12\x14\n" + - "\x05Emoji\x18\x06 \x01(\x05R\x05Emoji\x12&\n" + - "\x0eFriendProgress\x18\a \x01(\x05R\x0eFriendProgress\"{\n" + + "\x05Emoji\x18\x06 \x01(\x05R\x05Emoji\x12\x1c\n" + + "\tSendEmoji\x18\a \x01(\x05R\tSendEmoji\x12&\n" + + "\x0eFriendProgress\x18\b \x01(\x05R\x0eFriendProgress\"{\n" + "\fCatnipInvite\x12\x10\n" + "\x03Uid\x18\x01 \x01(\x03R\x03Uid\x12\x12\n" + "\x04Time\x18\x02 \x01(\x03R\x04Time\x12\x12\n" + @@ -29794,7 +29851,11 @@ const file_proto_Gameapi_proto_rawDesc = "" + "\x17FRIEND_REPLY_TYPE_GREET\x10\x01\x12\"\n" + "\x1eFRIEND_REPLY_TYPE_RETURN_GREET\x10\x02\x12\x15\n" + "\x11REPLY_TYPE_CATNIP\x10\x03\x12\x1b\n" + - "\x17REPLY_TYPE_CATNIP_ITEMS\x10\x04B\bZ\x06../msgb\x06proto3" + "\x17REPLY_TYPE_CATNIP_ITEMS\x10\x04*4\n" + + "\x1cFRIEND_REPLY_HANDLE_ERR_TYPE\x12\b\n" + + "\x04NONE\x10\x00\x12\n" + + "\n" + + "\x06CATNIP\x10\x01B\bZ\x06../msgb\x06proto3" var ( file_proto_Gameapi_proto_rawDescOnce sync.Once @@ -29808,8 +29869,8 @@ func file_proto_Gameapi_proto_rawDescGZIP() []byte { return file_proto_Gameapi_proto_rawDescData } -var file_proto_Gameapi_proto_enumTypes = make([]protoimpl.EnumInfo, 13) -var file_proto_Gameapi_proto_msgTypes = make([]protoimpl.MessageInfo, 544) +var file_proto_Gameapi_proto_enumTypes = make([]protoimpl.EnumInfo, 14) +var file_proto_Gameapi_proto_msgTypes = make([]protoimpl.MessageInfo, 545) var file_proto_Gameapi_proto_goTypes = []any{ (ITEM_POP_LABEL)(0), // 0: tutorial.ITEM_POP_LABEL (HANDLE_TYPE)(0), // 1: tutorial.HANDLE_TYPE @@ -29824,615 +29885,617 @@ var file_proto_Gameapi_proto_goTypes = []any{ (LimitEventParam)(0), // 10: tutorial.LimitEventParam (ActLogType)(0), // 11: tutorial.ActLogType (FRIEND_REPLY_TYPE)(0), // 12: tutorial.FRIEND_REPLY_TYPE - (*ClientReq)(nil), // 13: tutorial.ClientReq - (*ReqOfflineReconnect)(nil), // 14: tutorial.ReqOfflineReconnect - (*ResOfflineReconnect)(nil), // 15: tutorial.ResOfflineReconnect - (*ReqBindFacebookAccount)(nil), // 16: tutorial.ReqBindFacebookAccount - (*ResBindFacebookAccount)(nil), // 17: tutorial.ResBindFacebookAccount - (*ReqOnlyBindFacebook)(nil), // 18: tutorial.ReqOnlyBindFacebook - (*ResOnlyBindFacebook)(nil), // 19: tutorial.ResOnlyBindFacebook - (*ReqUnBindFacebook)(nil), // 20: tutorial.ReqUnBindFacebook - (*ResUnBindFacebook)(nil), // 21: tutorial.ResUnBindFacebook - (*ReqSynGameData)(nil), // 22: tutorial.ReqSynGameData - (*ResSynGameData)(nil), // 23: tutorial.ResSynGameData - (*ForceKickOut)(nil), // 24: tutorial.ForceKickOut - (*ResServerVersion)(nil), // 25: tutorial.ResServerVersion - (*ResChessColorData)(nil), // 26: tutorial.ResChessColorData - (*ClientRes)(nil), // 27: tutorial.ClientRes - (*ReqRegisterAccount)(nil), // 28: tutorial.ReqRegisterAccount - (*ResRegisterAccount)(nil), // 29: tutorial.ResRegisterAccount - (*ReqLogin)(nil), // 30: tutorial.ReqLogin - (*ReqLoginCode)(nil), // 31: tutorial.ReqLoginCode - (*ResLoginCode)(nil), // 32: tutorial.ResLoginCode - (*ReqId2Verify)(nil), // 33: tutorial.ReqId2Verify - (*ResId2Verify)(nil), // 34: tutorial.ResId2Verify - (*ResLogin)(nil), // 35: tutorial.ResLogin - (*ReqChangePassword)(nil), // 36: tutorial.ReqChangePassword - (*ResChangePassword)(nil), // 37: tutorial.ResChangePassword - (*ReqPlayerBaseInfo)(nil), // 38: tutorial.ReqPlayerBaseInfo - (*ResPlayerBaseInfo)(nil), // 39: tutorial.ResPlayerBaseInfo - (*ReqPlayerAsset)(nil), // 40: tutorial.ReqPlayerAsset - (*ResPlayerAsset)(nil), // 41: tutorial.ResPlayerAsset - (*UpdateBaseItemInfo)(nil), // 42: tutorial.UpdateBaseItemInfo - (*NotifyRenewBuyEnergyCnt)(nil), // 43: tutorial.NotifyRenewBuyEnergyCnt - (*ReqRemoveAd)(nil), // 44: tutorial.ReqRemoveAd - (*ResRemoveAd)(nil), // 45: tutorial.ResRemoveAd - (*NotifyAddEnergy)(nil), // 46: tutorial.NotifyAddEnergy - (*ReqServerTime)(nil), // 47: tutorial.ReqServerTime - (*ResServerTime)(nil), // 48: tutorial.ResServerTime - (*ReqPlayerChessData)(nil), // 49: tutorial.ReqPlayerChessData - (*ResPlayerChessData)(nil), // 50: tutorial.ResPlayerChessData - (*ResPlayerChessInfo)(nil), // 51: tutorial.ResPlayerChessInfo - (*ReqGetChessRetireReward)(nil), // 52: tutorial.ReqGetChessRetireReward - (*ResGetChessRetireReward)(nil), // 53: tutorial.ResGetChessRetireReward - (*PartBag)(nil), // 54: tutorial.PartBag - (*PartBagGrid)(nil), // 55: tutorial.PartBagGrid - (*ReqPutPartInBag)(nil), // 56: tutorial.ReqPutPartInBag - (*ResPutPartInBag)(nil), // 57: tutorial.ResPutPartInBag - (*ChessHandle)(nil), // 58: tutorial.ChessHandle - (*UpdatePlayerChessData)(nil), // 59: tutorial.UpdatePlayerChessData - (*ResUpdatePlayerChessData)(nil), // 60: tutorial.ResUpdatePlayerChessData - (*ReqSeparateChess)(nil), // 61: tutorial.ReqSeparateChess - (*ResSeparateChess)(nil), // 62: tutorial.ResSeparateChess - (*ReqUpgradeChess)(nil), // 63: tutorial.ReqUpgradeChess - (*ResUpgradeChess)(nil), // 64: tutorial.ResUpgradeChess - (*ReqGetChessFromBuff)(nil), // 65: tutorial.ReqGetChessFromBuff - (*ResGetChessFromBuff)(nil), // 66: tutorial.ResGetChessFromBuff - (*ReqChessEx)(nil), // 67: tutorial.ReqChessEx - (*ResChessEx)(nil), // 68: tutorial.ResChessEx - (*ReqSourceChest)(nil), // 69: tutorial.ReqSourceChest - (*ResSourceChest)(nil), // 70: tutorial.ResSourceChest - (*ReqPlayroomOutline)(nil), // 71: tutorial.ReqPlayroomOutline - (*ResPlayroomOutline)(nil), // 72: tutorial.ResPlayroomOutline - (*ChessBag)(nil), // 73: tutorial.ChessBag - (*ChessBagGrid)(nil), // 74: tutorial.ChessBagGrid - (*ReqPutChessInBag)(nil), // 75: tutorial.ReqPutChessInBag - (*ResPutChessInBag)(nil), // 76: tutorial.ResPutChessInBag - (*ReqTakeChessOutBag)(nil), // 77: tutorial.ReqTakeChessOutBag - (*ResTakeChessOutBag)(nil), // 78: tutorial.ResTakeChessOutBag - (*ReqBuyChessBagGrid)(nil), // 79: tutorial.ReqBuyChessBagGrid - (*ResBuyChessBagGrid)(nil), // 80: tutorial.ResBuyChessBagGrid - (*ReqPlayerProfileData)(nil), // 81: tutorial.ReqPlayerProfileData - (*ResPlayerProfileData)(nil), // 82: tutorial.ResPlayerProfileData - (*ReqPlayerBriefProfileData)(nil), // 83: tutorial.ReqPlayerBriefProfileData - (*ResPlayerBriefProfileData)(nil), // 84: tutorial.ResPlayerBriefProfileData - (*ReqSetEnergyMul)(nil), // 85: tutorial.ReqSetEnergyMul - (*ResSetEnergyMul)(nil), // 86: tutorial.ResSetEnergyMul - (*ReqLang)(nil), // 87: tutorial.ReqLang - (*ResLang)(nil), // 88: tutorial.ResLang - (*BaseInfo)(nil), // 89: tutorial.BaseInfo - (*ReqUserInfo)(nil), // 90: tutorial.ReqUserInfo - (*UserInfo)(nil), // 91: tutorial.UserInfo - (*ReqSetName)(nil), // 92: tutorial.ReqSetName - (*ResSetName)(nil), // 93: tutorial.ResSetName - (*ReqSetPetName)(nil), // 94: tutorial.ReqSetPetName - (*ResSetPetName)(nil), // 95: tutorial.ResSetPetName - (*ReqBuyEnergy)(nil), // 96: tutorial.ReqBuyEnergy - (*ResBuyEnergy)(nil), // 97: tutorial.ResBuyEnergy - (*ReqGetEnergyByAD)(nil), // 98: tutorial.ReqGetEnergyByAD - (*ResGetEnergyByAD)(nil), // 99: tutorial.ResGetEnergyByAD - (*ReqGetHandbookReward)(nil), // 100: tutorial.ReqGetHandbookReward - (*ResGetHandbookReward)(nil), // 101: tutorial.ResGetHandbookReward - (*HandbookInfo)(nil), // 102: tutorial.HandbookInfo - (*Handbook)(nil), // 103: tutorial.Handbook - (*RegHandbookAllReward)(nil), // 104: tutorial.RegHandbookAllReward - (*ResHandbookAllReward)(nil), // 105: tutorial.ResHandbookAllReward - (*ReqRewardOrder)(nil), // 106: tutorial.ReqRewardOrder - (*ResRewardOrder)(nil), // 107: tutorial.ResRewardOrder - (*ReqCreatePetOrder)(nil), // 108: tutorial.ReqCreatePetOrder - (*ReqDelOrder)(nil), // 109: tutorial.ReqDelOrder - (*ResDelOrder)(nil), // 110: tutorial.ResDelOrder - (*ReqSellChessNum)(nil), // 111: tutorial.ReqSellChessNum - (*ResSellChessNum)(nil), // 112: tutorial.ResSellChessNum - (*Order)(nil), // 113: tutorial.Order - (*ResOrderList)(nil), // 114: tutorial.ResOrderList - (*ResDecorateInfo)(nil), // 115: tutorial.ResDecorateInfo - (*DecoratePart)(nil), // 116: tutorial.DecoratePart - (*ReqDecorate)(nil), // 117: tutorial.ReqDecorate - (*ResDecorate)(nil), // 118: tutorial.ResDecorate - (*ReqDecorateAll)(nil), // 119: tutorial.ReqDecorateAll - (*ResDecorateAll)(nil), // 120: tutorial.ResDecorateAll - (*ReqAreaReward)(nil), // 121: tutorial.ReqAreaReward - (*ResAreaReward)(nil), // 122: tutorial.ResAreaReward - (*ReqGmCommand)(nil), // 123: tutorial.ReqGmCommand - (*Card)(nil), // 124: tutorial.Card - (*ReqCardInfo)(nil), // 125: tutorial.ReqCardInfo - (*ResCardInfo)(nil), // 126: tutorial.ResCardInfo - (*ResNotifyCardTimes)(nil), // 127: tutorial.ResNotifyCardTimes - (*ReqCardSeasonFirstReward)(nil), // 128: tutorial.ReqCardSeasonFirstReward - (*ResCardSeasonFirstReward)(nil), // 129: tutorial.ResCardSeasonFirstReward - (*ReqCardHandbookReward)(nil), // 130: tutorial.ReqCardHandbookReward - (*ResCardHandbookReward)(nil), // 131: tutorial.ResCardHandbookReward - (*ReqMasterCard)(nil), // 132: tutorial.ReqMasterCard - (*ResMasterCard)(nil), // 133: tutorial.ResMasterCard - (*ReqCardCollectReward)(nil), // 134: tutorial.ReqCardCollectReward - (*ResCardCollectReward)(nil), // 135: tutorial.ResCardCollectReward - (*ReqExStarReward)(nil), // 136: tutorial.ReqExStarReward - (*ResExStarReward)(nil), // 137: tutorial.ResExStarReward - (*ReqAllCollectReward)(nil), // 138: tutorial.ReqAllCollectReward - (*ResAllCollectReward)(nil), // 139: tutorial.ResAllCollectReward - (*ReqCardGive)(nil), // 140: tutorial.ReqCardGive - (*ResCardGive)(nil), // 141: tutorial.ResCardGive - (*ReqAgreeCardGive)(nil), // 142: tutorial.ReqAgreeCardGive - (*ResAgreeCardGive)(nil), // 143: tutorial.ResAgreeCardGive - (*ReqRefuseCardGive)(nil), // 144: tutorial.ReqRefuseCardGive - (*ResRefuseCardGive)(nil), // 145: tutorial.ResRefuseCardGive - (*ReqCardSend)(nil), // 146: tutorial.ReqCardSend - (*ResCardSend)(nil), // 147: tutorial.ResCardSend - (*ReqCardExchange)(nil), // 148: tutorial.ReqCardExchange - (*ResCardExchange)(nil), // 149: tutorial.ResCardExchange - (*ReqSelectCardExchange)(nil), // 150: tutorial.ReqSelectCardExchange - (*ResSelectCardExchange)(nil), // 151: tutorial.ResSelectCardExchange - (*ReqAgreeCardExchange)(nil), // 152: tutorial.ReqAgreeCardExchange - (*ResAgreeCardExchange)(nil), // 153: tutorial.ResAgreeCardExchange - (*ReqRefuseCardSelect)(nil), // 154: tutorial.ReqRefuseCardSelect - (*ResRefuseCardSelect)(nil), // 155: tutorial.ResRefuseCardSelect - (*ReqRefuseCardExchange)(nil), // 156: tutorial.ReqRefuseCardExchange - (*ResRefuseCardExchange)(nil), // 157: tutorial.ResRefuseCardExchange - (*ReqGetFriendCard)(nil), // 158: tutorial.ReqGetFriendCard - (*ResGetFriendCard)(nil), // 159: tutorial.ResGetFriendCard - (*ReqGetGoldCard)(nil), // 160: tutorial.ReqGetGoldCard - (*ResGetGoldCard)(nil), // 161: tutorial.ResGetGoldCard - (*ReqGuideReward)(nil), // 162: tutorial.ReqGuideReward - (*ResGuideReward)(nil), // 163: tutorial.ResGuideReward - (*ReqGuidePlayroom)(nil), // 164: tutorial.ReqGuidePlayroom - (*ResGuidePlayroom)(nil), // 165: tutorial.ResGuidePlayroom - (*ResGuildInfo)(nil), // 166: tutorial.ResGuildInfo - (*ResGuideInfo)(nil), // 167: tutorial.ResGuideInfo - (*ResItemPop)(nil), // 168: tutorial.ResItemPop - (*ItemInfo)(nil), // 169: tutorial.ItemInfo - (*CardPack)(nil), // 170: tutorial.CardPack - (*ResGuideTask)(nil), // 171: tutorial.ResGuideTask - (*GuideTask)(nil), // 172: tutorial.GuideTask - (*ReqGetGuideTaskReward)(nil), // 173: tutorial.ReqGetGuideTaskReward - (*ResGetGuideTaskReward)(nil), // 174: tutorial.ResGetGuideTaskReward - (*ReqGetGuideActiveReward)(nil), // 175: tutorial.ReqGetGuideActiveReward - (*ResGetGuideActiveReward)(nil), // 176: tutorial.ResGetGuideActiveReward - (*ResDailyTask)(nil), // 177: tutorial.ResDailyTask - (*DailyWeek)(nil), // 178: tutorial.DailyWeek - (*DailyTask)(nil), // 179: tutorial.DailyTask - (*QuestProgress)(nil), // 180: tutorial.QuestProgress - (*ReqGetDailyTaskReward)(nil), // 181: tutorial.ReqGetDailyTaskReward - (*ResGetDailyTaskReward)(nil), // 182: tutorial.ResGetDailyTaskReward - (*ReqGetDailyWeekReward)(nil), // 183: tutorial.ReqGetDailyWeekReward - (*ResGetDailyWeekReward)(nil), // 184: tutorial.ResGetDailyWeekReward - (*ReqDailyUnlock)(nil), // 185: tutorial.ReqDailyUnlock - (*ResDailyUnlock)(nil), // 186: tutorial.ResDailyUnlock - (*ResFaceInfo)(nil), // 187: tutorial.ResFaceInfo - (*FaceInfo)(nil), // 188: tutorial.FaceInfo - (*ReqSetFace)(nil), // 189: tutorial.ReqSetFace - (*ResSetFace)(nil), // 190: tutorial.ResSetFace - (*ResAvatarInfo)(nil), // 191: tutorial.ResAvatarInfo - (*AvatarInfo)(nil), // 192: tutorial.AvatarInfo - (*ReqSetAvatar)(nil), // 193: tutorial.ReqSetAvatar - (*ResSetAvatar)(nil), // 194: tutorial.ResSetAvatar - (*EmojiInfo)(nil), // 195: tutorial.EmojiInfo - (*ReqSetEmoji)(nil), // 196: tutorial.ReqSetEmoji - (*ResSetEmoji)(nil), // 197: tutorial.ResSetEmoji - (*ResSevenLogin)(nil), // 198: tutorial.ResSevenLogin - (*SevenLoginReward)(nil), // 199: tutorial.SevenLoginReward - (*ReqGetSevenLoginReward)(nil), // 200: tutorial.ReqGetSevenLoginReward - (*ResGetSevenLoginReward)(nil), // 201: tutorial.ResGetSevenLoginReward - (*ReqGetMonthLoginReward)(nil), // 202: tutorial.ReqGetMonthLoginReward - (*ResGetMonthLoginReward)(nil), // 203: tutorial.ResGetMonthLoginReward - (*ResActivity)(nil), // 204: tutorial.ResActivity - (*ActivityInfo)(nil), // 205: tutorial.ActivityInfo - (*ReqActivityReward)(nil), // 206: tutorial.ReqActivityReward - (*ResActivityReward)(nil), // 207: tutorial.ResActivityReward - (*ReqLimitEvent)(nil), // 208: tutorial.ReqLimitEvent - (*ResLimitEvent)(nil), // 209: tutorial.ResLimitEvent - (*ResLimitEventProgress)(nil), // 210: tutorial.ResLimitEventProgress - (*ReqLimitEventReward)(nil), // 211: tutorial.ReqLimitEventReward - (*ResLimitEventReward)(nil), // 212: tutorial.ResLimitEventReward - (*ReqSelectLimitEvent)(nil), // 213: tutorial.ReqSelectLimitEvent - (*ResSelectLimitEvent)(nil), // 214: tutorial.ResSelectLimitEvent - (*LimitEvent)(nil), // 215: tutorial.LimitEvent - (*LimitEventNotify)(nil), // 216: tutorial.LimitEventNotify - (*ReqLimitEventLuckyCat)(nil), // 217: tutorial.ReqLimitEventLuckyCat - (*ResLimitEventLuckyCat)(nil), // 218: tutorial.ResLimitEventLuckyCat - (*ReqLimitSenceReward)(nil), // 219: tutorial.ReqLimitSenceReward - (*ResLimitSenceReward)(nil), // 220: tutorial.ResLimitSenceReward - (*ResChessRainReward)(nil), // 221: tutorial.ResChessRainReward - (*ReqFastProduceInfo)(nil), // 222: tutorial.ReqFastProduceInfo - (*ResFastProduceInfo)(nil), // 223: tutorial.ResFastProduceInfo - (*ReqFastProduceReward)(nil), // 224: tutorial.ReqFastProduceReward - (*ResFastProduceReward)(nil), // 225: tutorial.ResFastProduceReward - (*ReqCatTrickReward)(nil), // 226: tutorial.ReqCatTrickReward - (*ResCatTrickReward)(nil), // 227: tutorial.ResCatTrickReward - (*ReqSearchPlayer)(nil), // 228: tutorial.ReqSearchPlayer - (*ResSearchPlayer)(nil), // 229: tutorial.ResSearchPlayer - (*ReqFriendPlayerSimple)(nil), // 230: tutorial.ReqFriendPlayerSimple - (*ResFriendPlayerSimple)(nil), // 231: tutorial.ResFriendPlayerSimple - (*ResPlayerSimple)(nil), // 232: tutorial.ResPlayerSimple - (*ActLog)(nil), // 233: tutorial.ActLog - (*ResPlayerRank)(nil), // 234: tutorial.ResPlayerRank - (*ResFriendLog)(nil), // 235: tutorial.ResFriendLog - (*NotifyFriendLog)(nil), // 236: tutorial.NotifyFriendLog - (*FriendBubbleInfo)(nil), // 237: tutorial.FriendBubbleInfo - (*NotifyFriendCard)(nil), // 238: tutorial.NotifyFriendCard - (*ResFriendCard)(nil), // 239: tutorial.ResFriendCard - (*ReqKv)(nil), // 240: tutorial.ReqKv - (*ResKv)(nil), // 241: tutorial.ResKv - (*ReqFriendByCode)(nil), // 242: tutorial.ReqFriendByCode - (*ResFriendByCode)(nil), // 243: tutorial.ResFriendByCode - (*ReqFriendRecommend)(nil), // 244: tutorial.ReqFriendRecommend - (*ResFriendRecommend)(nil), // 245: tutorial.ResFriendRecommend - (*ReqFriendIgnore)(nil), // 246: tutorial.ReqFriendIgnore - (*ResFriendIgnore)(nil), // 247: tutorial.ResFriendIgnore - (*ReqFriendList)(nil), // 248: tutorial.ReqFriendList - (*ResFriendList)(nil), // 249: tutorial.ResFriendList - (*ReqAddNpc)(nil), // 250: tutorial.ReqAddNpc - (*ResAddNpc)(nil), // 251: tutorial.ResAddNpc - (*ReqFriendApply)(nil), // 252: tutorial.ReqFriendApply - (*ResFriendApply)(nil), // 253: tutorial.ResFriendApply - (*ResFriendApplyInfo)(nil), // 254: tutorial.ResFriendApplyInfo - (*ReqFriendCardMsg)(nil), // 255: tutorial.ReqFriendCardMsg - (*ResFriendCardMsg)(nil), // 256: tutorial.ResFriendCardMsg - (*ReqWishApplyList)(nil), // 257: tutorial.ReqWishApplyList - (*ResWishApplyList)(nil), // 258: tutorial.ResWishApplyList - (*ReqWishApply)(nil), // 259: tutorial.ReqWishApply - (*ResWishApply)(nil), // 260: tutorial.ResWishApply - (*ReqFriendTimeLine)(nil), // 261: tutorial.ReqFriendTimeLine - (*ResFriendTimeLine)(nil), // 262: tutorial.ResFriendTimeLine - (*ResFriendReply)(nil), // 263: tutorial.ResFriendReply - (*ReqFriendReplyHandle)(nil), // 264: tutorial.ReqFriendReplyHandle - (*ResFriendReplyHandle)(nil), // 265: tutorial.ResFriendReplyHandle - (*ResFriendBubble)(nil), // 266: tutorial.ResFriendBubble - (*ReqFriendTLUpvote)(nil), // 267: tutorial.ReqFriendTLUpvote - (*ResFriendTLUpvote)(nil), // 268: tutorial.ResFriendTLUpvote - (*ReqFriendTReward)(nil), // 269: tutorial.ReqFriendTReward - (*ResFriendTReward)(nil), // 270: tutorial.ResFriendTReward - (*ResFriendApplyNotify)(nil), // 271: tutorial.ResFriendApplyNotify - (*ReqApplyFriend)(nil), // 272: tutorial.ReqApplyFriend - (*ResApplyFriend)(nil), // 273: tutorial.ResApplyFriend - (*ReqAgreeFriend)(nil), // 274: tutorial.ReqAgreeFriend - (*ResAgreeFriend)(nil), // 275: tutorial.ResAgreeFriend - (*ReqRefuseFriend)(nil), // 276: tutorial.ReqRefuseFriend - (*ResRefuseFriend)(nil), // 277: tutorial.ResRefuseFriend - (*ReqDelFriend)(nil), // 278: tutorial.ReqDelFriend - (*ResDelFriend)(nil), // 279: tutorial.ResDelFriend - (*ReqRank)(nil), // 280: tutorial.ReqRank - (*ResRank)(nil), // 281: tutorial.ResRank - (*ReqMailList)(nil), // 282: tutorial.ReqMailList - (*ResMailList)(nil), // 283: tutorial.ResMailList - (*MailInfo)(nil), // 284: tutorial.MailInfo - (*MailNotify)(nil), // 285: tutorial.MailNotify - (*ReqReadMail)(nil), // 286: tutorial.ReqReadMail - (*ResReadMail)(nil), // 287: tutorial.ResReadMail - (*ReqGetMailReward)(nil), // 288: tutorial.ReqGetMailReward - (*ResGetMailReward)(nil), // 289: tutorial.ResGetMailReward - (*ReqDeleteMail)(nil), // 290: tutorial.ReqDeleteMail - (*ResDeleteMail)(nil), // 291: tutorial.ResDeleteMail - (*ResCharge)(nil), // 292: tutorial.ResCharge - (*LogoutPetWork)(nil), // 293: tutorial.LogoutPetWork - (*WeeklyDiscountInfo)(nil), // 294: tutorial.WeeklyDiscountInfo - (*WishList)(nil), // 295: tutorial.WishList - (*ReqAddWish)(nil), // 296: tutorial.ReqAddWish - (*ResAddWish)(nil), // 297: tutorial.ResAddWish - (*ReqGetWish)(nil), // 298: tutorial.ReqGetWish - (*ResGetWish)(nil), // 299: tutorial.ResGetWish - (*ReqSendWishBeg)(nil), // 300: tutorial.ReqSendWishBeg - (*ResSendWishBeg)(nil), // 301: tutorial.ResSendWishBeg - (*ResSpecialShop)(nil), // 302: tutorial.ResSpecialShop - (*ResChessShop)(nil), // 303: tutorial.ResChessShop - (*ReqFreeShop)(nil), // 304: tutorial.ReqFreeShop - (*ResFreeShop)(nil), // 305: tutorial.ResFreeShop - (*ReqBuyChessShop)(nil), // 306: tutorial.ReqBuyChessShop - (*ResBuyChessShop)(nil), // 307: tutorial.ResBuyChessShop - (*ReqBuyChessShop2)(nil), // 308: tutorial.ReqBuyChessShop2 - (*ResBuyChessShop2)(nil), // 309: tutorial.ResBuyChessShop2 - (*ReqRefreshChessShop)(nil), // 310: tutorial.ReqRefreshChessShop - (*ResRefreshChessShop)(nil), // 311: tutorial.ResRefreshChessShop - (*ReqEndless)(nil), // 312: tutorial.ReqEndless - (*ResEndless)(nil), // 313: tutorial.ResEndless - (*ResEndlessInfo)(nil), // 314: tutorial.ResEndlessInfo - (*ReqEndlessReward)(nil), // 315: tutorial.ReqEndlessReward - (*ResEndlessReward)(nil), // 316: tutorial.ResEndlessReward - (*ResPiggyBank)(nil), // 317: tutorial.ResPiggyBank - (*ReqPiggyBankReward)(nil), // 318: tutorial.ReqPiggyBankReward - (*ResPiggyBankReward)(nil), // 319: tutorial.ResPiggyBankReward - (*ReqChargeReceive)(nil), // 320: tutorial.ReqChargeReceive - (*ResChargeReceive)(nil), // 321: tutorial.ResChargeReceive - (*ReqCreateOrderSn)(nil), // 322: tutorial.ReqCreateOrderSn - (*ResCreateOrderSn)(nil), // 323: tutorial.ResCreateOrderSn - (*ReqShippingOrder)(nil), // 324: tutorial.ReqShippingOrder - (*ResShippingOrder)(nil), // 325: tutorial.ResShippingOrder - (*ReqChampship)(nil), // 326: tutorial.ReqChampship - (*ResChampship)(nil), // 327: tutorial.ResChampship - (*ReqChampshipReward)(nil), // 328: tutorial.ReqChampshipReward - (*ResChampshipReward)(nil), // 329: tutorial.ResChampshipReward - (*ReqChampshipRankReward)(nil), // 330: tutorial.ReqChampshipRankReward - (*ResChampshipRankReward)(nil), // 331: tutorial.ResChampshipRankReward - (*ReqChampshipRank)(nil), // 332: tutorial.ReqChampshipRank - (*ResChampshipRank)(nil), // 333: tutorial.ResChampshipRank - (*ReqChampshipPreRank)(nil), // 334: tutorial.ReqChampshipPreRank - (*ResChampshipPreRank)(nil), // 335: tutorial.ResChampshipPreRank - (*ResNotifyCard)(nil), // 336: tutorial.ResNotifyCard - (*ReqSetFacebookUrl)(nil), // 337: tutorial.ReqSetFacebookUrl - (*ResSetFacebookUrl)(nil), // 338: tutorial.ResSetFacebookUrl - (*ReqInviteFriendData)(nil), // 339: tutorial.ReqInviteFriendData - (*ResInviteFriendData)(nil), // 340: tutorial.ResInviteFriendData - (*ReqSelfInvited)(nil), // 341: tutorial.ReqSelfInvited - (*ResSelfInvited)(nil), // 342: tutorial.ResSelfInvited - (*NotifyInvitedSuccess)(nil), // 343: tutorial.NotifyInvitedSuccess - (*ReqGetInviteReward)(nil), // 344: tutorial.ReqGetInviteReward - (*ResGetInviteReward)(nil), // 345: tutorial.ResGetInviteReward - (*ReqAutoAddInviteFriend)(nil), // 346: tutorial.ReqAutoAddInviteFriend - (*ResAutoAddInviteFriend)(nil), // 347: tutorial.ResAutoAddInviteFriend - (*ReqAutoAddInviteFriend2)(nil), // 348: tutorial.ReqAutoAddInviteFriend2 - (*ResAutoAddInviteFriend2)(nil), // 349: tutorial.ResAutoAddInviteFriend2 - (*ReqMining)(nil), // 350: tutorial.ReqMining - (*ResMining)(nil), // 351: tutorial.ResMining - (*ReqMiningTake)(nil), // 352: tutorial.ReqMiningTake - (*ResMiningTake)(nil), // 353: tutorial.ResMiningTake - (*ReqMiningReward)(nil), // 354: tutorial.ReqMiningReward - (*ResMiningReward)(nil), // 355: tutorial.ResMiningReward - (*ReqActPass)(nil), // 356: tutorial.ReqActPass - (*ResActPass)(nil), // 357: tutorial.ResActPass - (*ReqActPassReward)(nil), // 358: tutorial.ReqActPassReward - (*ResActPassReward)(nil), // 359: tutorial.ResActPassReward - (*ResActRed)(nil), // 360: tutorial.ResActRed - (*NotifyActRed)(nil), // 361: tutorial.NotifyActRed - (*ActivityNotify)(nil), // 362: tutorial.ActivityNotify - (*ResItem)(nil), // 363: tutorial.ResItem - (*ItemNotify)(nil), // 364: tutorial.ItemNotify - (*ReqGuessColor)(nil), // 365: tutorial.ReqGuessColor - (*ResGuessColor)(nil), // 366: tutorial.ResGuessColor - (*Opponent)(nil), // 367: tutorial.opponent - (*ReqGuessColorTake)(nil), // 368: tutorial.ReqGuessColorTake - (*GuessColorInfo)(nil), // 369: tutorial.GuessColorInfo - (*ResGuessColorTake)(nil), // 370: tutorial.ResGuessColorTake - (*ReqGuessColorReward)(nil), // 371: tutorial.ReqGuessColorReward - (*ResGuessColorReward)(nil), // 372: tutorial.ResGuessColorReward - (*ReqRace)(nil), // 373: tutorial.ReqRace - (*ResRace)(nil), // 374: tutorial.ResRace - (*Raceopponent)(nil), // 375: tutorial.raceopponent - (*ReqRaceStart)(nil), // 376: tutorial.ReqRaceStart - (*ResRaceStart)(nil), // 377: tutorial.ResRaceStart - (*ReqRaceReward)(nil), // 378: tutorial.ReqRaceReward - (*ResRaceReward)(nil), // 379: tutorial.ResRaceReward - (*ReqPlayroom)(nil), // 380: tutorial.ReqPlayroom - (*ResPlayroom)(nil), // 381: tutorial.ResPlayroom - (*NotifyPlayroomTask)(nil), // 382: tutorial.NotifyPlayroomTask - (*ReqPlayroomTask)(nil), // 383: tutorial.ReqPlayroomTask - (*ResPlayroomTask)(nil), // 384: tutorial.ResPlayroomTask - (*ReqPlayroomTaskReward)(nil), // 385: tutorial.ReqPlayroomTaskReward - (*ResPlayroomTaskReward)(nil), // 386: tutorial.ResPlayroomTaskReward - (*ReqPlayroomUnlock)(nil), // 387: tutorial.ReqPlayroomUnlock - (*ResPlayroomUnlock)(nil), // 388: tutorial.ResPlayroomUnlock - (*ReqPlayroomUpvote)(nil), // 389: tutorial.ReqPlayroomUpvote - (*ResPlayroomUpvote)(nil), // 390: tutorial.ResPlayroomUpvote - (*PlayroomDress)(nil), // 391: tutorial.PlayroomDress - (*PlayroomDressInfo)(nil), // 392: tutorial.PlayroomDressInfo - (*PlayroomAirInfo)(nil), // 393: tutorial.PlayroomAirInfo - (*PlayroomCollectInfo)(nil), // 394: tutorial.PlayroomCollectInfo - (*ReqPlayroomDressSet)(nil), // 395: tutorial.ReqPlayroomDressSet - (*ResPlayroomDressSet)(nil), // 396: tutorial.ResPlayroomDressSet - (*ReqPlayroomPetAirSet)(nil), // 397: tutorial.ReqPlayroomPetAirSet - (*ResPlayroomPetAirSet)(nil), // 398: tutorial.ResPlayroomPetAirSet - (*ReqPlayroomWrokOutline)(nil), // 399: tutorial.ReqPlayroomWrokOutline - (*ResPlayroomWrokOutline)(nil), // 400: tutorial.ResPlayroomWrokOutline - (*NofiPlayroomStatus)(nil), // 401: tutorial.NofiPlayroomStatus - (*NotifyPlayroomWork)(nil), // 402: tutorial.NotifyPlayroomWork - (*NotifyPlayroomLose)(nil), // 403: tutorial.NotifyPlayroomLose - (*ChipInfo)(nil), // 404: tutorial.ChipInfo - (*NotifyPlayroomMood)(nil), // 405: tutorial.NotifyPlayroomMood - (*AdItem)(nil), // 406: tutorial.AdItem - (*NotifyPlayroomKiss)(nil), // 407: tutorial.NotifyPlayroomKiss - (*FriendRoom)(nil), // 408: tutorial.FriendRoom - (*RoomOpponent)(nil), // 409: tutorial.RoomOpponent - (*ReqPlayroomInfo)(nil), // 410: tutorial.ReqPlayroomInfo - (*ResPlayroomInfo)(nil), // 411: tutorial.ResPlayroomInfo - (*ReqPlayroomFlip)(nil), // 412: tutorial.ReqPlayroomFlip - (*ResPlayroomFlip)(nil), // 413: tutorial.ResPlayroomFlip - (*ReqPlayroomGuide)(nil), // 414: tutorial.ReqPlayroomGuide - (*ResPlayroomGuide)(nil), // 415: tutorial.ResPlayroomGuide - (*ReqPlayroomFlipReward)(nil), // 416: tutorial.ReqPlayroomFlipReward - (*ResPlayroomFlipReward)(nil), // 417: tutorial.ResPlayroomFlipReward - (*ReqPlayroomGame)(nil), // 418: tutorial.ReqPlayroomGame - (*ResPlayroomGame)(nil), // 419: tutorial.ResPlayroomGame - (*ReqPlayroomGameShowReward)(nil), // 420: tutorial.ReqPlayroomGameShowReward - (*ResPlayroomGameShowReward)(nil), // 421: tutorial.ResPlayroomGameShowReward - (*ReqPlayroomInteract)(nil), // 422: tutorial.ReqPlayroomInteract - (*ResPlayroomInteract)(nil), // 423: tutorial.ResPlayroomInteract - (*ReqPlayroomSetRoom)(nil), // 424: tutorial.ReqPlayroomSetRoom - (*ResPlayroomSetRoom)(nil), // 425: tutorial.ResPlayroomSetRoom - (*ReqPlayroomSelectReward)(nil), // 426: tutorial.ReqPlayroomSelectReward - (*ResPlayroomSelectReward)(nil), // 427: tutorial.ResPlayroomSelectReward - (*ReqPlayroomLose)(nil), // 428: tutorial.ReqPlayroomLose - (*ResPlayroomLose)(nil), // 429: tutorial.ResPlayroomLose - (*ReqPlayroomWork)(nil), // 430: tutorial.ReqPlayroomWork - (*ResPlayroomWork)(nil), // 431: tutorial.ResPlayroomWork - (*ReqPlayroomRest)(nil), // 432: tutorial.ReqPlayroomRest - (*ResPlayroomRest)(nil), // 433: tutorial.ResPlayroomRest - (*ReqPlayroomDraw)(nil), // 434: tutorial.ReqPlayroomDraw - (*ResPlayroomDraw)(nil), // 435: tutorial.ResPlayroomDraw - (*ReqPlayroomChip)(nil), // 436: tutorial.ReqPlayroomChip - (*ResPlayroomChip)(nil), // 437: tutorial.ResPlayroomChip - (*ReqPlayroomBuyItem)(nil), // 438: tutorial.ReqPlayroomBuyItem - (*ResPlayroomBuyItem)(nil), // 439: tutorial.ResPlayroomBuyItem - (*ReqPlayroomShop)(nil), // 440: tutorial.ReqPlayroomShop - (*ResPlayroomShop)(nil), // 441: tutorial.ResPlayroomShop - (*ReqFriendTreasure)(nil), // 442: tutorial.ReqFriendTreasure - (*ResFriendTreasure)(nil), // 443: tutorial.ResFriendTreasure - (*TreasureInfo)(nil), // 444: tutorial.TreasureInfo - (*ReqFriendTreasureStart)(nil), // 445: tutorial.ReqFriendTreasureStart - (*ResFriendTreasureStart)(nil), // 446: tutorial.ResFriendTreasureStart - (*ReqFriendTreasureEnd)(nil), // 447: tutorial.ReqFriendTreasureEnd - (*ResFriendTreasureEnd)(nil), // 448: tutorial.ResFriendTreasureEnd - (*ReqFriendTreasureFilp)(nil), // 449: tutorial.ReqFriendTreasureFilp - (*ResFriendTreasureFilp)(nil), // 450: tutorial.ResFriendTreasureFilp - (*ResFriendTreasureStar)(nil), // 451: tutorial.ResFriendTreasureStar - (*ReqKafkaLog)(nil), // 452: tutorial.ReqKafkaLog - (*ReqCollectInfo)(nil), // 453: tutorial.ReqCollectInfo - (*ResCollectInfo)(nil), // 454: tutorial.ResCollectInfo - (*CollectItem)(nil), // 455: tutorial.CollectItem - (*ReqCollect)(nil), // 456: tutorial.ReqCollect - (*ResCollect)(nil), // 457: tutorial.ResCollect - (*ReqCatnip)(nil), // 458: tutorial.ReqCatnip - (*ResCatnip)(nil), // 459: tutorial.ResCatnip - (*CatnipGame)(nil), // 460: tutorial.CatnipGame - (*CatnipInvite)(nil), // 461: tutorial.CatnipInvite - (*ReqCatnipInvite)(nil), // 462: tutorial.ReqCatnipInvite - (*ResCatnipInvite)(nil), // 463: tutorial.ResCatnipInvite - (*ReqCatnipAgree)(nil), // 464: tutorial.ReqCatnipAgree - (*ResCatnipAgree)(nil), // 465: tutorial.ResCatnipAgree - (*ReqCatnipRefuse)(nil), // 466: tutorial.ReqCatnipRefuse - (*ResCatnipRefuse)(nil), // 467: tutorial.ResCatnipRefuse - (*ReqCatnipMultiply)(nil), // 468: tutorial.ReqCatnipMultiply - (*ResCatnipMultiply)(nil), // 469: tutorial.ResCatnipMultiply - (*ReqCatnipPlay)(nil), // 470: tutorial.ReqCatnipPlay - (*ResCatnipPlay)(nil), // 471: tutorial.ResCatnipPlay - (*ReqCatnipReward)(nil), // 472: tutorial.ReqCatnipReward - (*ResCatnipReward)(nil), // 473: tutorial.ResCatnipReward - (*ReqCatnipGrandReward)(nil), // 474: tutorial.ReqCatnipGrandReward - (*ResCatnipGrandReward)(nil), // 475: tutorial.ResCatnipGrandReward - (*ReqCatnipEmoji)(nil), // 476: tutorial.ReqCatnipEmoji - (*ResCatnipEmoji)(nil), // 477: tutorial.ResCatnipEmoji - (*AdminReq)(nil), // 478: tutorial.AdminReq - (*AdminRes)(nil), // 479: tutorial.AdminRes - (*ReqAdminInfo)(nil), // 480: tutorial.ReqAdminInfo - (*ReqReloadServerMail)(nil), // 481: tutorial.ReqReloadServerMail - (*ReqServerInfo)(nil), // 482: tutorial.ReqServerInfo - (*ReqReload)(nil), // 483: tutorial.ReqReload - (*ReqAdminGm)(nil), // 484: tutorial.ReqAdminGm - (*ReqAdminBan)(nil), // 485: tutorial.ReqAdminBan - (*ReqAdminShipping)(nil), // 486: tutorial.ReqAdminShipping - nil, // 487: tutorial.ResChessColorData.MChessColorDataEntry - nil, // 488: tutorial.UpdateBaseItemInfo.MUpdateItemEntry - nil, // 489: tutorial.ResPlayerChessData.MChessDataEntry - nil, // 490: tutorial.ReqPutPartInBag.MChessDataEntry - nil, // 491: tutorial.UpdatePlayerChessData.MChessDataEntry - nil, // 492: tutorial.ReqSeparateChess.MChessDataEntry - nil, // 493: tutorial.ReqUpgradeChess.MChessDataEntry - nil, // 494: tutorial.ReqGetChessFromBuff.MChessDataEntry - nil, // 495: tutorial.ReqChessEx.MChessDataEntry - nil, // 496: tutorial.ReqSourceChest.MChessDataEntry - nil, // 497: tutorial.ReqPlayroomOutline.MChessDataEntry - nil, // 498: tutorial.ReqPutChessInBag.MChessDataEntry - nil, // 499: tutorial.ReqTakeChessOutBag.MChessDataEntry - nil, // 500: tutorial.ResPlayerBriefProfileData.SetEmojiEntry - nil, // 501: tutorial.UserInfo.SetEmojiEntry - nil, // 502: tutorial.ReqRewardOrder.MChessDataEntry - nil, // 503: tutorial.ResCardInfo.AllCardEntry - nil, // 504: tutorial.ResCardInfo.HandbookEntry - nil, // 505: tutorial.ResGuildInfo.RewardEntry - nil, // 506: tutorial.ResGuideInfo.RewardEntry - nil, // 507: tutorial.ResGuideTask.TaskEntry - nil, // 508: tutorial.ResDailyTask.WeekRewardEntry - nil, // 509: tutorial.ResDailyTask.DailyTaskEntry - nil, // 510: tutorial.ResLimitEvent.LimitEventListEntry - nil, // 511: tutorial.ResLimitEventProgress.ProgressRewardEntry - nil, // 512: tutorial.LimitEvent.ParamEntry - nil, // 513: tutorial.ReqLimitEventLuckyCat.MChessDataEntry - nil, // 514: tutorial.ResFriendPlayerSimple.EmojiEntry - nil, // 515: tutorial.ResFriendPlayerSimple.PlayroomEntry - nil, // 516: tutorial.ResFriendPlayerSimple.DressSetEntry - nil, // 517: tutorial.ResFriendPlayerSimple.PhysiologyEntry - nil, // 518: tutorial.ResPlayerSimple.EmojiEntry - nil, // 519: tutorial.ResKv.KvEntry - nil, // 520: tutorial.ResRank.RankListEntry - nil, // 521: tutorial.ResMailList.MailListEntry - nil, // 522: tutorial.ResCharge.SpecialShopEntry - nil, // 523: tutorial.ResCharge.ChessShopEntry - nil, // 524: tutorial.ResCharge.GiftEntry - nil, // 525: tutorial.ResCharge.WeeklyDiscountEntry - nil, // 526: tutorial.ReqBuyChessShop2.MChessDataEntry - nil, // 527: tutorial.ResEndless.EndlessListEntry - nil, // 528: tutorial.ResChampshipRank.RankListEntry - nil, // 529: tutorial.ResChampshipPreRank.RankListEntry - nil, // 530: tutorial.ResNotifyCard.CardEntry - nil, // 531: tutorial.ResNotifyCard.MasterEntry - nil, // 532: tutorial.ResNotifyCard.HandbookEntry - nil, // 533: tutorial.ResMining.MapEntry - nil, // 534: tutorial.ReqMiningTake.MapEntry - nil, // 535: tutorial.ResActRed.RedEntry - nil, // 536: tutorial.ResItem.ItemEntry - nil, // 537: tutorial.ItemNotify.ItemEntry - nil, // 538: tutorial.ResGuessColor.OMapEntry - nil, // 539: tutorial.ReqGuessColorTake.OMapEntry - nil, // 540: tutorial.GuessColorInfo.MapEntry - nil, // 541: tutorial.ResPlayroom.PlayroomEntry - nil, // 542: tutorial.ResPlayroom.MoodEntry - nil, // 543: tutorial.ResPlayroom.PhysiologyEntry - nil, // 544: tutorial.ResPlayroom.DressEntry - nil, // 545: tutorial.ResPlayroom.DressSetEntry - nil, // 546: tutorial.ResPlayroom.WeeklyDiscountEntry - nil, // 547: tutorial.ReqPlayroomDressSet.DressSetEntry - nil, // 548: tutorial.NotifyPlayroomMood.MoodEntry - nil, // 549: tutorial.NotifyPlayroomMood.PhysiologyEntry - nil, // 550: tutorial.ResPlayroomInfo.PlayroomEntry - nil, // 551: tutorial.ResPlayroomInfo.ItemsEntry - nil, // 552: tutorial.ResPlayroomInfo.FlipEntry - nil, // 553: tutorial.ResPlayroomInfo.EmojiEntry - nil, // 554: tutorial.ResPlayroomInfo.DressSetEntry - nil, // 555: tutorial.ResPlayroomGame.ItemsEntry - nil, // 556: tutorial.ReqPlayroomSetRoom.PlayroomEntry + (FRIEND_REPLY_HANDLE_ERR_TYPE)(0), // 13: tutorial.FRIEND_REPLY_HANDLE_ERR_TYPE + (*ClientReq)(nil), // 14: tutorial.ClientReq + (*ReqOfflineReconnect)(nil), // 15: tutorial.ReqOfflineReconnect + (*ResOfflineReconnect)(nil), // 16: tutorial.ResOfflineReconnect + (*ReqBindFacebookAccount)(nil), // 17: tutorial.ReqBindFacebookAccount + (*ResBindFacebookAccount)(nil), // 18: tutorial.ResBindFacebookAccount + (*ReqOnlyBindFacebook)(nil), // 19: tutorial.ReqOnlyBindFacebook + (*ResOnlyBindFacebook)(nil), // 20: tutorial.ResOnlyBindFacebook + (*ReqUnBindFacebook)(nil), // 21: tutorial.ReqUnBindFacebook + (*ResUnBindFacebook)(nil), // 22: tutorial.ResUnBindFacebook + (*ReqSynGameData)(nil), // 23: tutorial.ReqSynGameData + (*ResSynGameData)(nil), // 24: tutorial.ResSynGameData + (*ForceKickOut)(nil), // 25: tutorial.ForceKickOut + (*ResServerVersion)(nil), // 26: tutorial.ResServerVersion + (*ResChessColorData)(nil), // 27: tutorial.ResChessColorData + (*ClientRes)(nil), // 28: tutorial.ClientRes + (*ReqRegisterAccount)(nil), // 29: tutorial.ReqRegisterAccount + (*ResRegisterAccount)(nil), // 30: tutorial.ResRegisterAccount + (*ReqLogin)(nil), // 31: tutorial.ReqLogin + (*ReqLoginCode)(nil), // 32: tutorial.ReqLoginCode + (*ResLoginCode)(nil), // 33: tutorial.ResLoginCode + (*ReqId2Verify)(nil), // 34: tutorial.ReqId2Verify + (*ResId2Verify)(nil), // 35: tutorial.ResId2Verify + (*ResLogin)(nil), // 36: tutorial.ResLogin + (*ReqChangePassword)(nil), // 37: tutorial.ReqChangePassword + (*ResChangePassword)(nil), // 38: tutorial.ResChangePassword + (*ReqPlayerBaseInfo)(nil), // 39: tutorial.ReqPlayerBaseInfo + (*ResPlayerBaseInfo)(nil), // 40: tutorial.ResPlayerBaseInfo + (*ReqPlayerAsset)(nil), // 41: tutorial.ReqPlayerAsset + (*ResPlayerAsset)(nil), // 42: tutorial.ResPlayerAsset + (*UpdateBaseItemInfo)(nil), // 43: tutorial.UpdateBaseItemInfo + (*NotifyRenewBuyEnergyCnt)(nil), // 44: tutorial.NotifyRenewBuyEnergyCnt + (*ReqRemoveAd)(nil), // 45: tutorial.ReqRemoveAd + (*ResRemoveAd)(nil), // 46: tutorial.ResRemoveAd + (*NotifyAddEnergy)(nil), // 47: tutorial.NotifyAddEnergy + (*ReqServerTime)(nil), // 48: tutorial.ReqServerTime + (*ResServerTime)(nil), // 49: tutorial.ResServerTime + (*ReqPlayerChessData)(nil), // 50: tutorial.ReqPlayerChessData + (*ResPlayerChessData)(nil), // 51: tutorial.ResPlayerChessData + (*ResPlayerChessInfo)(nil), // 52: tutorial.ResPlayerChessInfo + (*ReqGetChessRetireReward)(nil), // 53: tutorial.ReqGetChessRetireReward + (*ResGetChessRetireReward)(nil), // 54: tutorial.ResGetChessRetireReward + (*PartBag)(nil), // 55: tutorial.PartBag + (*PartBagGrid)(nil), // 56: tutorial.PartBagGrid + (*ReqPutPartInBag)(nil), // 57: tutorial.ReqPutPartInBag + (*ResPutPartInBag)(nil), // 58: tutorial.ResPutPartInBag + (*ChessHandle)(nil), // 59: tutorial.ChessHandle + (*UpdatePlayerChessData)(nil), // 60: tutorial.UpdatePlayerChessData + (*ResUpdatePlayerChessData)(nil), // 61: tutorial.ResUpdatePlayerChessData + (*ReqSeparateChess)(nil), // 62: tutorial.ReqSeparateChess + (*ResSeparateChess)(nil), // 63: tutorial.ResSeparateChess + (*ReqUpgradeChess)(nil), // 64: tutorial.ReqUpgradeChess + (*ResUpgradeChess)(nil), // 65: tutorial.ResUpgradeChess + (*ReqGetChessFromBuff)(nil), // 66: tutorial.ReqGetChessFromBuff + (*ResGetChessFromBuff)(nil), // 67: tutorial.ResGetChessFromBuff + (*ReqChessEx)(nil), // 68: tutorial.ReqChessEx + (*ResChessEx)(nil), // 69: tutorial.ResChessEx + (*ReqSourceChest)(nil), // 70: tutorial.ReqSourceChest + (*ResSourceChest)(nil), // 71: tutorial.ResSourceChest + (*ReqPlayroomOutline)(nil), // 72: tutorial.ReqPlayroomOutline + (*ResPlayroomOutline)(nil), // 73: tutorial.ResPlayroomOutline + (*ChessBag)(nil), // 74: tutorial.ChessBag + (*ChessBagGrid)(nil), // 75: tutorial.ChessBagGrid + (*ReqPutChessInBag)(nil), // 76: tutorial.ReqPutChessInBag + (*ResPutChessInBag)(nil), // 77: tutorial.ResPutChessInBag + (*ReqTakeChessOutBag)(nil), // 78: tutorial.ReqTakeChessOutBag + (*ResTakeChessOutBag)(nil), // 79: tutorial.ResTakeChessOutBag + (*ReqBuyChessBagGrid)(nil), // 80: tutorial.ReqBuyChessBagGrid + (*ResBuyChessBagGrid)(nil), // 81: tutorial.ResBuyChessBagGrid + (*ReqPlayerProfileData)(nil), // 82: tutorial.ReqPlayerProfileData + (*ResPlayerProfileData)(nil), // 83: tutorial.ResPlayerProfileData + (*ReqPlayerBriefProfileData)(nil), // 84: tutorial.ReqPlayerBriefProfileData + (*ResPlayerBriefProfileData)(nil), // 85: tutorial.ResPlayerBriefProfileData + (*ReqSetEnergyMul)(nil), // 86: tutorial.ReqSetEnergyMul + (*ResSetEnergyMul)(nil), // 87: tutorial.ResSetEnergyMul + (*ReqLang)(nil), // 88: tutorial.ReqLang + (*ResLang)(nil), // 89: tutorial.ResLang + (*BaseInfo)(nil), // 90: tutorial.BaseInfo + (*ReqUserInfo)(nil), // 91: tutorial.ReqUserInfo + (*UserInfo)(nil), // 92: tutorial.UserInfo + (*ReqSetName)(nil), // 93: tutorial.ReqSetName + (*ResSetName)(nil), // 94: tutorial.ResSetName + (*ReqSetPetName)(nil), // 95: tutorial.ReqSetPetName + (*ResSetPetName)(nil), // 96: tutorial.ResSetPetName + (*ReqBuyEnergy)(nil), // 97: tutorial.ReqBuyEnergy + (*ResBuyEnergy)(nil), // 98: tutorial.ResBuyEnergy + (*ReqGetEnergyByAD)(nil), // 99: tutorial.ReqGetEnergyByAD + (*ResGetEnergyByAD)(nil), // 100: tutorial.ResGetEnergyByAD + (*ReqGetHandbookReward)(nil), // 101: tutorial.ReqGetHandbookReward + (*ResGetHandbookReward)(nil), // 102: tutorial.ResGetHandbookReward + (*HandbookInfo)(nil), // 103: tutorial.HandbookInfo + (*Handbook)(nil), // 104: tutorial.Handbook + (*RegHandbookAllReward)(nil), // 105: tutorial.RegHandbookAllReward + (*ResHandbookAllReward)(nil), // 106: tutorial.ResHandbookAllReward + (*ReqRewardOrder)(nil), // 107: tutorial.ReqRewardOrder + (*ResRewardOrder)(nil), // 108: tutorial.ResRewardOrder + (*ReqCreatePetOrder)(nil), // 109: tutorial.ReqCreatePetOrder + (*ReqDelOrder)(nil), // 110: tutorial.ReqDelOrder + (*ResDelOrder)(nil), // 111: tutorial.ResDelOrder + (*ReqSellChessNum)(nil), // 112: tutorial.ReqSellChessNum + (*ResSellChessNum)(nil), // 113: tutorial.ResSellChessNum + (*Order)(nil), // 114: tutorial.Order + (*ResOrderList)(nil), // 115: tutorial.ResOrderList + (*ResDecorateInfo)(nil), // 116: tutorial.ResDecorateInfo + (*DecoratePart)(nil), // 117: tutorial.DecoratePart + (*ReqDecorate)(nil), // 118: tutorial.ReqDecorate + (*ResDecorate)(nil), // 119: tutorial.ResDecorate + (*ReqDecorateAll)(nil), // 120: tutorial.ReqDecorateAll + (*ResDecorateAll)(nil), // 121: tutorial.ResDecorateAll + (*ReqAreaReward)(nil), // 122: tutorial.ReqAreaReward + (*ResAreaReward)(nil), // 123: tutorial.ResAreaReward + (*ReqGmCommand)(nil), // 124: tutorial.ReqGmCommand + (*Card)(nil), // 125: tutorial.Card + (*ReqCardInfo)(nil), // 126: tutorial.ReqCardInfo + (*ResCardInfo)(nil), // 127: tutorial.ResCardInfo + (*ResNotifyCardTimes)(nil), // 128: tutorial.ResNotifyCardTimes + (*ReqCardSeasonFirstReward)(nil), // 129: tutorial.ReqCardSeasonFirstReward + (*ResCardSeasonFirstReward)(nil), // 130: tutorial.ResCardSeasonFirstReward + (*ReqCardHandbookReward)(nil), // 131: tutorial.ReqCardHandbookReward + (*ResCardHandbookReward)(nil), // 132: tutorial.ResCardHandbookReward + (*ReqMasterCard)(nil), // 133: tutorial.ReqMasterCard + (*ResMasterCard)(nil), // 134: tutorial.ResMasterCard + (*ReqCardCollectReward)(nil), // 135: tutorial.ReqCardCollectReward + (*ResCardCollectReward)(nil), // 136: tutorial.ResCardCollectReward + (*ReqExStarReward)(nil), // 137: tutorial.ReqExStarReward + (*ResExStarReward)(nil), // 138: tutorial.ResExStarReward + (*ReqAllCollectReward)(nil), // 139: tutorial.ReqAllCollectReward + (*ResAllCollectReward)(nil), // 140: tutorial.ResAllCollectReward + (*ReqCardGive)(nil), // 141: tutorial.ReqCardGive + (*ResCardGive)(nil), // 142: tutorial.ResCardGive + (*ReqAgreeCardGive)(nil), // 143: tutorial.ReqAgreeCardGive + (*ResAgreeCardGive)(nil), // 144: tutorial.ResAgreeCardGive + (*ReqRefuseCardGive)(nil), // 145: tutorial.ReqRefuseCardGive + (*ResRefuseCardGive)(nil), // 146: tutorial.ResRefuseCardGive + (*ReqCardSend)(nil), // 147: tutorial.ReqCardSend + (*ResCardSend)(nil), // 148: tutorial.ResCardSend + (*ReqCardExchange)(nil), // 149: tutorial.ReqCardExchange + (*ResCardExchange)(nil), // 150: tutorial.ResCardExchange + (*ReqSelectCardExchange)(nil), // 151: tutorial.ReqSelectCardExchange + (*ResSelectCardExchange)(nil), // 152: tutorial.ResSelectCardExchange + (*ReqAgreeCardExchange)(nil), // 153: tutorial.ReqAgreeCardExchange + (*ResAgreeCardExchange)(nil), // 154: tutorial.ResAgreeCardExchange + (*ReqRefuseCardSelect)(nil), // 155: tutorial.ReqRefuseCardSelect + (*ResRefuseCardSelect)(nil), // 156: tutorial.ResRefuseCardSelect + (*ReqRefuseCardExchange)(nil), // 157: tutorial.ReqRefuseCardExchange + (*ResRefuseCardExchange)(nil), // 158: tutorial.ResRefuseCardExchange + (*ReqGetFriendCard)(nil), // 159: tutorial.ReqGetFriendCard + (*ResGetFriendCard)(nil), // 160: tutorial.ResGetFriendCard + (*ReqGetGoldCard)(nil), // 161: tutorial.ReqGetGoldCard + (*ResGetGoldCard)(nil), // 162: tutorial.ResGetGoldCard + (*ReqGuideReward)(nil), // 163: tutorial.ReqGuideReward + (*ResGuideReward)(nil), // 164: tutorial.ResGuideReward + (*ReqGuidePlayroom)(nil), // 165: tutorial.ReqGuidePlayroom + (*ResGuidePlayroom)(nil), // 166: tutorial.ResGuidePlayroom + (*ResGuildInfo)(nil), // 167: tutorial.ResGuildInfo + (*ResGuideInfo)(nil), // 168: tutorial.ResGuideInfo + (*ResItemPop)(nil), // 169: tutorial.ResItemPop + (*ItemInfo)(nil), // 170: tutorial.ItemInfo + (*CardPack)(nil), // 171: tutorial.CardPack + (*ResGuideTask)(nil), // 172: tutorial.ResGuideTask + (*GuideTask)(nil), // 173: tutorial.GuideTask + (*ReqGetGuideTaskReward)(nil), // 174: tutorial.ReqGetGuideTaskReward + (*ResGetGuideTaskReward)(nil), // 175: tutorial.ResGetGuideTaskReward + (*ReqGetGuideActiveReward)(nil), // 176: tutorial.ReqGetGuideActiveReward + (*ResGetGuideActiveReward)(nil), // 177: tutorial.ResGetGuideActiveReward + (*ResDailyTask)(nil), // 178: tutorial.ResDailyTask + (*DailyWeek)(nil), // 179: tutorial.DailyWeek + (*DailyTask)(nil), // 180: tutorial.DailyTask + (*QuestProgress)(nil), // 181: tutorial.QuestProgress + (*ReqGetDailyTaskReward)(nil), // 182: tutorial.ReqGetDailyTaskReward + (*ResGetDailyTaskReward)(nil), // 183: tutorial.ResGetDailyTaskReward + (*ReqGetDailyWeekReward)(nil), // 184: tutorial.ReqGetDailyWeekReward + (*ResGetDailyWeekReward)(nil), // 185: tutorial.ResGetDailyWeekReward + (*ReqDailyUnlock)(nil), // 186: tutorial.ReqDailyUnlock + (*ResDailyUnlock)(nil), // 187: tutorial.ResDailyUnlock + (*ResFaceInfo)(nil), // 188: tutorial.ResFaceInfo + (*FaceInfo)(nil), // 189: tutorial.FaceInfo + (*ReqSetFace)(nil), // 190: tutorial.ReqSetFace + (*ResSetFace)(nil), // 191: tutorial.ResSetFace + (*ResAvatarInfo)(nil), // 192: tutorial.ResAvatarInfo + (*AvatarInfo)(nil), // 193: tutorial.AvatarInfo + (*ReqSetAvatar)(nil), // 194: tutorial.ReqSetAvatar + (*ResSetAvatar)(nil), // 195: tutorial.ResSetAvatar + (*EmojiInfo)(nil), // 196: tutorial.EmojiInfo + (*ReqSetEmoji)(nil), // 197: tutorial.ReqSetEmoji + (*ResSetEmoji)(nil), // 198: tutorial.ResSetEmoji + (*ResSevenLogin)(nil), // 199: tutorial.ResSevenLogin + (*SevenLoginReward)(nil), // 200: tutorial.SevenLoginReward + (*ReqGetSevenLoginReward)(nil), // 201: tutorial.ReqGetSevenLoginReward + (*ResGetSevenLoginReward)(nil), // 202: tutorial.ResGetSevenLoginReward + (*ReqGetMonthLoginReward)(nil), // 203: tutorial.ReqGetMonthLoginReward + (*ResGetMonthLoginReward)(nil), // 204: tutorial.ResGetMonthLoginReward + (*ResActivity)(nil), // 205: tutorial.ResActivity + (*ActivityInfo)(nil), // 206: tutorial.ActivityInfo + (*ReqActivityReward)(nil), // 207: tutorial.ReqActivityReward + (*ResActivityReward)(nil), // 208: tutorial.ResActivityReward + (*ReqLimitEvent)(nil), // 209: tutorial.ReqLimitEvent + (*ResLimitEvent)(nil), // 210: tutorial.ResLimitEvent + (*ResLimitEventProgress)(nil), // 211: tutorial.ResLimitEventProgress + (*ReqLimitEventReward)(nil), // 212: tutorial.ReqLimitEventReward + (*ResLimitEventReward)(nil), // 213: tutorial.ResLimitEventReward + (*ReqSelectLimitEvent)(nil), // 214: tutorial.ReqSelectLimitEvent + (*ResSelectLimitEvent)(nil), // 215: tutorial.ResSelectLimitEvent + (*LimitEvent)(nil), // 216: tutorial.LimitEvent + (*LimitEventNotify)(nil), // 217: tutorial.LimitEventNotify + (*ReqLimitEventLuckyCat)(nil), // 218: tutorial.ReqLimitEventLuckyCat + (*ResLimitEventLuckyCat)(nil), // 219: tutorial.ResLimitEventLuckyCat + (*ReqLimitSenceReward)(nil), // 220: tutorial.ReqLimitSenceReward + (*ResLimitSenceReward)(nil), // 221: tutorial.ResLimitSenceReward + (*ResChessRainReward)(nil), // 222: tutorial.ResChessRainReward + (*ReqFastProduceInfo)(nil), // 223: tutorial.ReqFastProduceInfo + (*ResFastProduceInfo)(nil), // 224: tutorial.ResFastProduceInfo + (*ReqFastProduceReward)(nil), // 225: tutorial.ReqFastProduceReward + (*ResFastProduceReward)(nil), // 226: tutorial.ResFastProduceReward + (*ReqCatTrickReward)(nil), // 227: tutorial.ReqCatTrickReward + (*ResCatTrickReward)(nil), // 228: tutorial.ResCatTrickReward + (*ReqSearchPlayer)(nil), // 229: tutorial.ReqSearchPlayer + (*ResSearchPlayer)(nil), // 230: tutorial.ResSearchPlayer + (*ReqFriendPlayerSimple)(nil), // 231: tutorial.ReqFriendPlayerSimple + (*ResFriendPlayerSimple)(nil), // 232: tutorial.ResFriendPlayerSimple + (*ResPlayerSimple)(nil), // 233: tutorial.ResPlayerSimple + (*ActLog)(nil), // 234: tutorial.ActLog + (*ResPlayerRank)(nil), // 235: tutorial.ResPlayerRank + (*ResFriendLog)(nil), // 236: tutorial.ResFriendLog + (*NotifyFriendLog)(nil), // 237: tutorial.NotifyFriendLog + (*FriendBubbleInfo)(nil), // 238: tutorial.FriendBubbleInfo + (*NotifyFriendCard)(nil), // 239: tutorial.NotifyFriendCard + (*ResFriendCard)(nil), // 240: tutorial.ResFriendCard + (*ReqKv)(nil), // 241: tutorial.ReqKv + (*ResKv)(nil), // 242: tutorial.ResKv + (*ReqFriendByCode)(nil), // 243: tutorial.ReqFriendByCode + (*ResFriendByCode)(nil), // 244: tutorial.ResFriendByCode + (*ReqFriendRecommend)(nil), // 245: tutorial.ReqFriendRecommend + (*ResFriendRecommend)(nil), // 246: tutorial.ResFriendRecommend + (*ReqFriendIgnore)(nil), // 247: tutorial.ReqFriendIgnore + (*ResFriendIgnore)(nil), // 248: tutorial.ResFriendIgnore + (*ReqFriendList)(nil), // 249: tutorial.ReqFriendList + (*ResFriendList)(nil), // 250: tutorial.ResFriendList + (*ReqAddNpc)(nil), // 251: tutorial.ReqAddNpc + (*ResAddNpc)(nil), // 252: tutorial.ResAddNpc + (*ReqFriendApply)(nil), // 253: tutorial.ReqFriendApply + (*ResFriendApply)(nil), // 254: tutorial.ResFriendApply + (*ResFriendApplyInfo)(nil), // 255: tutorial.ResFriendApplyInfo + (*ReqFriendCardMsg)(nil), // 256: tutorial.ReqFriendCardMsg + (*ResFriendCardMsg)(nil), // 257: tutorial.ResFriendCardMsg + (*ReqWishApplyList)(nil), // 258: tutorial.ReqWishApplyList + (*ResWishApplyList)(nil), // 259: tutorial.ResWishApplyList + (*ReqWishApply)(nil), // 260: tutorial.ReqWishApply + (*ResWishApply)(nil), // 261: tutorial.ResWishApply + (*ReqFriendTimeLine)(nil), // 262: tutorial.ReqFriendTimeLine + (*ResFriendTimeLine)(nil), // 263: tutorial.ResFriendTimeLine + (*ResFriendReply)(nil), // 264: tutorial.ResFriendReply + (*ReqFriendReplyHandle)(nil), // 265: tutorial.ReqFriendReplyHandle + (*ResFriendReplyHandle)(nil), // 266: tutorial.ResFriendReplyHandle + (*ResFriendBubble)(nil), // 267: tutorial.ResFriendBubble + (*ReqFriendTLUpvote)(nil), // 268: tutorial.ReqFriendTLUpvote + (*ResFriendTLUpvote)(nil), // 269: tutorial.ResFriendTLUpvote + (*ReqFriendTReward)(nil), // 270: tutorial.ReqFriendTReward + (*ResFriendTReward)(nil), // 271: tutorial.ResFriendTReward + (*ResFriendApplyNotify)(nil), // 272: tutorial.ResFriendApplyNotify + (*ResFriendReplyNotify)(nil), // 273: tutorial.ResFriendReplyNotify + (*ReqApplyFriend)(nil), // 274: tutorial.ReqApplyFriend + (*ResApplyFriend)(nil), // 275: tutorial.ResApplyFriend + (*ReqAgreeFriend)(nil), // 276: tutorial.ReqAgreeFriend + (*ResAgreeFriend)(nil), // 277: tutorial.ResAgreeFriend + (*ReqRefuseFriend)(nil), // 278: tutorial.ReqRefuseFriend + (*ResRefuseFriend)(nil), // 279: tutorial.ResRefuseFriend + (*ReqDelFriend)(nil), // 280: tutorial.ReqDelFriend + (*ResDelFriend)(nil), // 281: tutorial.ResDelFriend + (*ReqRank)(nil), // 282: tutorial.ReqRank + (*ResRank)(nil), // 283: tutorial.ResRank + (*ReqMailList)(nil), // 284: tutorial.ReqMailList + (*ResMailList)(nil), // 285: tutorial.ResMailList + (*MailInfo)(nil), // 286: tutorial.MailInfo + (*MailNotify)(nil), // 287: tutorial.MailNotify + (*ReqReadMail)(nil), // 288: tutorial.ReqReadMail + (*ResReadMail)(nil), // 289: tutorial.ResReadMail + (*ReqGetMailReward)(nil), // 290: tutorial.ReqGetMailReward + (*ResGetMailReward)(nil), // 291: tutorial.ResGetMailReward + (*ReqDeleteMail)(nil), // 292: tutorial.ReqDeleteMail + (*ResDeleteMail)(nil), // 293: tutorial.ResDeleteMail + (*ResCharge)(nil), // 294: tutorial.ResCharge + (*LogoutPetWork)(nil), // 295: tutorial.LogoutPetWork + (*WeeklyDiscountInfo)(nil), // 296: tutorial.WeeklyDiscountInfo + (*WishList)(nil), // 297: tutorial.WishList + (*ReqAddWish)(nil), // 298: tutorial.ReqAddWish + (*ResAddWish)(nil), // 299: tutorial.ResAddWish + (*ReqGetWish)(nil), // 300: tutorial.ReqGetWish + (*ResGetWish)(nil), // 301: tutorial.ResGetWish + (*ReqSendWishBeg)(nil), // 302: tutorial.ReqSendWishBeg + (*ResSendWishBeg)(nil), // 303: tutorial.ResSendWishBeg + (*ResSpecialShop)(nil), // 304: tutorial.ResSpecialShop + (*ResChessShop)(nil), // 305: tutorial.ResChessShop + (*ReqFreeShop)(nil), // 306: tutorial.ReqFreeShop + (*ResFreeShop)(nil), // 307: tutorial.ResFreeShop + (*ReqBuyChessShop)(nil), // 308: tutorial.ReqBuyChessShop + (*ResBuyChessShop)(nil), // 309: tutorial.ResBuyChessShop + (*ReqBuyChessShop2)(nil), // 310: tutorial.ReqBuyChessShop2 + (*ResBuyChessShop2)(nil), // 311: tutorial.ResBuyChessShop2 + (*ReqRefreshChessShop)(nil), // 312: tutorial.ReqRefreshChessShop + (*ResRefreshChessShop)(nil), // 313: tutorial.ResRefreshChessShop + (*ReqEndless)(nil), // 314: tutorial.ReqEndless + (*ResEndless)(nil), // 315: tutorial.ResEndless + (*ResEndlessInfo)(nil), // 316: tutorial.ResEndlessInfo + (*ReqEndlessReward)(nil), // 317: tutorial.ReqEndlessReward + (*ResEndlessReward)(nil), // 318: tutorial.ResEndlessReward + (*ResPiggyBank)(nil), // 319: tutorial.ResPiggyBank + (*ReqPiggyBankReward)(nil), // 320: tutorial.ReqPiggyBankReward + (*ResPiggyBankReward)(nil), // 321: tutorial.ResPiggyBankReward + (*ReqChargeReceive)(nil), // 322: tutorial.ReqChargeReceive + (*ResChargeReceive)(nil), // 323: tutorial.ResChargeReceive + (*ReqCreateOrderSn)(nil), // 324: tutorial.ReqCreateOrderSn + (*ResCreateOrderSn)(nil), // 325: tutorial.ResCreateOrderSn + (*ReqShippingOrder)(nil), // 326: tutorial.ReqShippingOrder + (*ResShippingOrder)(nil), // 327: tutorial.ResShippingOrder + (*ReqChampship)(nil), // 328: tutorial.ReqChampship + (*ResChampship)(nil), // 329: tutorial.ResChampship + (*ReqChampshipReward)(nil), // 330: tutorial.ReqChampshipReward + (*ResChampshipReward)(nil), // 331: tutorial.ResChampshipReward + (*ReqChampshipRankReward)(nil), // 332: tutorial.ReqChampshipRankReward + (*ResChampshipRankReward)(nil), // 333: tutorial.ResChampshipRankReward + (*ReqChampshipRank)(nil), // 334: tutorial.ReqChampshipRank + (*ResChampshipRank)(nil), // 335: tutorial.ResChampshipRank + (*ReqChampshipPreRank)(nil), // 336: tutorial.ReqChampshipPreRank + (*ResChampshipPreRank)(nil), // 337: tutorial.ResChampshipPreRank + (*ResNotifyCard)(nil), // 338: tutorial.ResNotifyCard + (*ReqSetFacebookUrl)(nil), // 339: tutorial.ReqSetFacebookUrl + (*ResSetFacebookUrl)(nil), // 340: tutorial.ResSetFacebookUrl + (*ReqInviteFriendData)(nil), // 341: tutorial.ReqInviteFriendData + (*ResInviteFriendData)(nil), // 342: tutorial.ResInviteFriendData + (*ReqSelfInvited)(nil), // 343: tutorial.ReqSelfInvited + (*ResSelfInvited)(nil), // 344: tutorial.ResSelfInvited + (*NotifyInvitedSuccess)(nil), // 345: tutorial.NotifyInvitedSuccess + (*ReqGetInviteReward)(nil), // 346: tutorial.ReqGetInviteReward + (*ResGetInviteReward)(nil), // 347: tutorial.ResGetInviteReward + (*ReqAutoAddInviteFriend)(nil), // 348: tutorial.ReqAutoAddInviteFriend + (*ResAutoAddInviteFriend)(nil), // 349: tutorial.ResAutoAddInviteFriend + (*ReqAutoAddInviteFriend2)(nil), // 350: tutorial.ReqAutoAddInviteFriend2 + (*ResAutoAddInviteFriend2)(nil), // 351: tutorial.ResAutoAddInviteFriend2 + (*ReqMining)(nil), // 352: tutorial.ReqMining + (*ResMining)(nil), // 353: tutorial.ResMining + (*ReqMiningTake)(nil), // 354: tutorial.ReqMiningTake + (*ResMiningTake)(nil), // 355: tutorial.ResMiningTake + (*ReqMiningReward)(nil), // 356: tutorial.ReqMiningReward + (*ResMiningReward)(nil), // 357: tutorial.ResMiningReward + (*ReqActPass)(nil), // 358: tutorial.ReqActPass + (*ResActPass)(nil), // 359: tutorial.ResActPass + (*ReqActPassReward)(nil), // 360: tutorial.ReqActPassReward + (*ResActPassReward)(nil), // 361: tutorial.ResActPassReward + (*ResActRed)(nil), // 362: tutorial.ResActRed + (*NotifyActRed)(nil), // 363: tutorial.NotifyActRed + (*ActivityNotify)(nil), // 364: tutorial.ActivityNotify + (*ResItem)(nil), // 365: tutorial.ResItem + (*ItemNotify)(nil), // 366: tutorial.ItemNotify + (*ReqGuessColor)(nil), // 367: tutorial.ReqGuessColor + (*ResGuessColor)(nil), // 368: tutorial.ResGuessColor + (*Opponent)(nil), // 369: tutorial.opponent + (*ReqGuessColorTake)(nil), // 370: tutorial.ReqGuessColorTake + (*GuessColorInfo)(nil), // 371: tutorial.GuessColorInfo + (*ResGuessColorTake)(nil), // 372: tutorial.ResGuessColorTake + (*ReqGuessColorReward)(nil), // 373: tutorial.ReqGuessColorReward + (*ResGuessColorReward)(nil), // 374: tutorial.ResGuessColorReward + (*ReqRace)(nil), // 375: tutorial.ReqRace + (*ResRace)(nil), // 376: tutorial.ResRace + (*Raceopponent)(nil), // 377: tutorial.raceopponent + (*ReqRaceStart)(nil), // 378: tutorial.ReqRaceStart + (*ResRaceStart)(nil), // 379: tutorial.ResRaceStart + (*ReqRaceReward)(nil), // 380: tutorial.ReqRaceReward + (*ResRaceReward)(nil), // 381: tutorial.ResRaceReward + (*ReqPlayroom)(nil), // 382: tutorial.ReqPlayroom + (*ResPlayroom)(nil), // 383: tutorial.ResPlayroom + (*NotifyPlayroomTask)(nil), // 384: tutorial.NotifyPlayroomTask + (*ReqPlayroomTask)(nil), // 385: tutorial.ReqPlayroomTask + (*ResPlayroomTask)(nil), // 386: tutorial.ResPlayroomTask + (*ReqPlayroomTaskReward)(nil), // 387: tutorial.ReqPlayroomTaskReward + (*ResPlayroomTaskReward)(nil), // 388: tutorial.ResPlayroomTaskReward + (*ReqPlayroomUnlock)(nil), // 389: tutorial.ReqPlayroomUnlock + (*ResPlayroomUnlock)(nil), // 390: tutorial.ResPlayroomUnlock + (*ReqPlayroomUpvote)(nil), // 391: tutorial.ReqPlayroomUpvote + (*ResPlayroomUpvote)(nil), // 392: tutorial.ResPlayroomUpvote + (*PlayroomDress)(nil), // 393: tutorial.PlayroomDress + (*PlayroomDressInfo)(nil), // 394: tutorial.PlayroomDressInfo + (*PlayroomAirInfo)(nil), // 395: tutorial.PlayroomAirInfo + (*PlayroomCollectInfo)(nil), // 396: tutorial.PlayroomCollectInfo + (*ReqPlayroomDressSet)(nil), // 397: tutorial.ReqPlayroomDressSet + (*ResPlayroomDressSet)(nil), // 398: tutorial.ResPlayroomDressSet + (*ReqPlayroomPetAirSet)(nil), // 399: tutorial.ReqPlayroomPetAirSet + (*ResPlayroomPetAirSet)(nil), // 400: tutorial.ResPlayroomPetAirSet + (*ReqPlayroomWrokOutline)(nil), // 401: tutorial.ReqPlayroomWrokOutline + (*ResPlayroomWrokOutline)(nil), // 402: tutorial.ResPlayroomWrokOutline + (*NofiPlayroomStatus)(nil), // 403: tutorial.NofiPlayroomStatus + (*NotifyPlayroomWork)(nil), // 404: tutorial.NotifyPlayroomWork + (*NotifyPlayroomLose)(nil), // 405: tutorial.NotifyPlayroomLose + (*ChipInfo)(nil), // 406: tutorial.ChipInfo + (*NotifyPlayroomMood)(nil), // 407: tutorial.NotifyPlayroomMood + (*AdItem)(nil), // 408: tutorial.AdItem + (*NotifyPlayroomKiss)(nil), // 409: tutorial.NotifyPlayroomKiss + (*FriendRoom)(nil), // 410: tutorial.FriendRoom + (*RoomOpponent)(nil), // 411: tutorial.RoomOpponent + (*ReqPlayroomInfo)(nil), // 412: tutorial.ReqPlayroomInfo + (*ResPlayroomInfo)(nil), // 413: tutorial.ResPlayroomInfo + (*ReqPlayroomFlip)(nil), // 414: tutorial.ReqPlayroomFlip + (*ResPlayroomFlip)(nil), // 415: tutorial.ResPlayroomFlip + (*ReqPlayroomGuide)(nil), // 416: tutorial.ReqPlayroomGuide + (*ResPlayroomGuide)(nil), // 417: tutorial.ResPlayroomGuide + (*ReqPlayroomFlipReward)(nil), // 418: tutorial.ReqPlayroomFlipReward + (*ResPlayroomFlipReward)(nil), // 419: tutorial.ResPlayroomFlipReward + (*ReqPlayroomGame)(nil), // 420: tutorial.ReqPlayroomGame + (*ResPlayroomGame)(nil), // 421: tutorial.ResPlayroomGame + (*ReqPlayroomGameShowReward)(nil), // 422: tutorial.ReqPlayroomGameShowReward + (*ResPlayroomGameShowReward)(nil), // 423: tutorial.ResPlayroomGameShowReward + (*ReqPlayroomInteract)(nil), // 424: tutorial.ReqPlayroomInteract + (*ResPlayroomInteract)(nil), // 425: tutorial.ResPlayroomInteract + (*ReqPlayroomSetRoom)(nil), // 426: tutorial.ReqPlayroomSetRoom + (*ResPlayroomSetRoom)(nil), // 427: tutorial.ResPlayroomSetRoom + (*ReqPlayroomSelectReward)(nil), // 428: tutorial.ReqPlayroomSelectReward + (*ResPlayroomSelectReward)(nil), // 429: tutorial.ResPlayroomSelectReward + (*ReqPlayroomLose)(nil), // 430: tutorial.ReqPlayroomLose + (*ResPlayroomLose)(nil), // 431: tutorial.ResPlayroomLose + (*ReqPlayroomWork)(nil), // 432: tutorial.ReqPlayroomWork + (*ResPlayroomWork)(nil), // 433: tutorial.ResPlayroomWork + (*ReqPlayroomRest)(nil), // 434: tutorial.ReqPlayroomRest + (*ResPlayroomRest)(nil), // 435: tutorial.ResPlayroomRest + (*ReqPlayroomDraw)(nil), // 436: tutorial.ReqPlayroomDraw + (*ResPlayroomDraw)(nil), // 437: tutorial.ResPlayroomDraw + (*ReqPlayroomChip)(nil), // 438: tutorial.ReqPlayroomChip + (*ResPlayroomChip)(nil), // 439: tutorial.ResPlayroomChip + (*ReqPlayroomBuyItem)(nil), // 440: tutorial.ReqPlayroomBuyItem + (*ResPlayroomBuyItem)(nil), // 441: tutorial.ResPlayroomBuyItem + (*ReqPlayroomShop)(nil), // 442: tutorial.ReqPlayroomShop + (*ResPlayroomShop)(nil), // 443: tutorial.ResPlayroomShop + (*ReqFriendTreasure)(nil), // 444: tutorial.ReqFriendTreasure + (*ResFriendTreasure)(nil), // 445: tutorial.ResFriendTreasure + (*TreasureInfo)(nil), // 446: tutorial.TreasureInfo + (*ReqFriendTreasureStart)(nil), // 447: tutorial.ReqFriendTreasureStart + (*ResFriendTreasureStart)(nil), // 448: tutorial.ResFriendTreasureStart + (*ReqFriendTreasureEnd)(nil), // 449: tutorial.ReqFriendTreasureEnd + (*ResFriendTreasureEnd)(nil), // 450: tutorial.ResFriendTreasureEnd + (*ReqFriendTreasureFilp)(nil), // 451: tutorial.ReqFriendTreasureFilp + (*ResFriendTreasureFilp)(nil), // 452: tutorial.ResFriendTreasureFilp + (*ResFriendTreasureStar)(nil), // 453: tutorial.ResFriendTreasureStar + (*ReqKafkaLog)(nil), // 454: tutorial.ReqKafkaLog + (*ReqCollectInfo)(nil), // 455: tutorial.ReqCollectInfo + (*ResCollectInfo)(nil), // 456: tutorial.ResCollectInfo + (*CollectItem)(nil), // 457: tutorial.CollectItem + (*ReqCollect)(nil), // 458: tutorial.ReqCollect + (*ResCollect)(nil), // 459: tutorial.ResCollect + (*ReqCatnip)(nil), // 460: tutorial.ReqCatnip + (*ResCatnip)(nil), // 461: tutorial.ResCatnip + (*CatnipGame)(nil), // 462: tutorial.CatnipGame + (*CatnipInvite)(nil), // 463: tutorial.CatnipInvite + (*ReqCatnipInvite)(nil), // 464: tutorial.ReqCatnipInvite + (*ResCatnipInvite)(nil), // 465: tutorial.ResCatnipInvite + (*ReqCatnipAgree)(nil), // 466: tutorial.ReqCatnipAgree + (*ResCatnipAgree)(nil), // 467: tutorial.ResCatnipAgree + (*ReqCatnipRefuse)(nil), // 468: tutorial.ReqCatnipRefuse + (*ResCatnipRefuse)(nil), // 469: tutorial.ResCatnipRefuse + (*ReqCatnipMultiply)(nil), // 470: tutorial.ReqCatnipMultiply + (*ResCatnipMultiply)(nil), // 471: tutorial.ResCatnipMultiply + (*ReqCatnipPlay)(nil), // 472: tutorial.ReqCatnipPlay + (*ResCatnipPlay)(nil), // 473: tutorial.ResCatnipPlay + (*ReqCatnipReward)(nil), // 474: tutorial.ReqCatnipReward + (*ResCatnipReward)(nil), // 475: tutorial.ResCatnipReward + (*ReqCatnipGrandReward)(nil), // 476: tutorial.ReqCatnipGrandReward + (*ResCatnipGrandReward)(nil), // 477: tutorial.ResCatnipGrandReward + (*ReqCatnipEmoji)(nil), // 478: tutorial.ReqCatnipEmoji + (*ResCatnipEmoji)(nil), // 479: tutorial.ResCatnipEmoji + (*AdminReq)(nil), // 480: tutorial.AdminReq + (*AdminRes)(nil), // 481: tutorial.AdminRes + (*ReqAdminInfo)(nil), // 482: tutorial.ReqAdminInfo + (*ReqReloadServerMail)(nil), // 483: tutorial.ReqReloadServerMail + (*ReqServerInfo)(nil), // 484: tutorial.ReqServerInfo + (*ReqReload)(nil), // 485: tutorial.ReqReload + (*ReqAdminGm)(nil), // 486: tutorial.ReqAdminGm + (*ReqAdminBan)(nil), // 487: tutorial.ReqAdminBan + (*ReqAdminShipping)(nil), // 488: tutorial.ReqAdminShipping + nil, // 489: tutorial.ResChessColorData.MChessColorDataEntry + nil, // 490: tutorial.UpdateBaseItemInfo.MUpdateItemEntry + nil, // 491: tutorial.ResPlayerChessData.MChessDataEntry + nil, // 492: tutorial.ReqPutPartInBag.MChessDataEntry + nil, // 493: tutorial.UpdatePlayerChessData.MChessDataEntry + nil, // 494: tutorial.ReqSeparateChess.MChessDataEntry + nil, // 495: tutorial.ReqUpgradeChess.MChessDataEntry + nil, // 496: tutorial.ReqGetChessFromBuff.MChessDataEntry + nil, // 497: tutorial.ReqChessEx.MChessDataEntry + nil, // 498: tutorial.ReqSourceChest.MChessDataEntry + nil, // 499: tutorial.ReqPlayroomOutline.MChessDataEntry + nil, // 500: tutorial.ReqPutChessInBag.MChessDataEntry + nil, // 501: tutorial.ReqTakeChessOutBag.MChessDataEntry + nil, // 502: tutorial.ResPlayerBriefProfileData.SetEmojiEntry + nil, // 503: tutorial.UserInfo.SetEmojiEntry + nil, // 504: tutorial.ReqRewardOrder.MChessDataEntry + nil, // 505: tutorial.ResCardInfo.AllCardEntry + nil, // 506: tutorial.ResCardInfo.HandbookEntry + nil, // 507: tutorial.ResGuildInfo.RewardEntry + nil, // 508: tutorial.ResGuideInfo.RewardEntry + nil, // 509: tutorial.ResGuideTask.TaskEntry + nil, // 510: tutorial.ResDailyTask.WeekRewardEntry + nil, // 511: tutorial.ResDailyTask.DailyTaskEntry + nil, // 512: tutorial.ResLimitEvent.LimitEventListEntry + nil, // 513: tutorial.ResLimitEventProgress.ProgressRewardEntry + nil, // 514: tutorial.LimitEvent.ParamEntry + nil, // 515: tutorial.ReqLimitEventLuckyCat.MChessDataEntry + nil, // 516: tutorial.ResFriendPlayerSimple.EmojiEntry + nil, // 517: tutorial.ResFriendPlayerSimple.PlayroomEntry + nil, // 518: tutorial.ResFriendPlayerSimple.DressSetEntry + nil, // 519: tutorial.ResFriendPlayerSimple.PhysiologyEntry + nil, // 520: tutorial.ResPlayerSimple.EmojiEntry + nil, // 521: tutorial.ResKv.KvEntry + nil, // 522: tutorial.ResRank.RankListEntry + nil, // 523: tutorial.ResMailList.MailListEntry + nil, // 524: tutorial.ResCharge.SpecialShopEntry + nil, // 525: tutorial.ResCharge.ChessShopEntry + nil, // 526: tutorial.ResCharge.GiftEntry + nil, // 527: tutorial.ResCharge.WeeklyDiscountEntry + nil, // 528: tutorial.ReqBuyChessShop2.MChessDataEntry + nil, // 529: tutorial.ResEndless.EndlessListEntry + nil, // 530: tutorial.ResChampshipRank.RankListEntry + nil, // 531: tutorial.ResChampshipPreRank.RankListEntry + nil, // 532: tutorial.ResNotifyCard.CardEntry + nil, // 533: tutorial.ResNotifyCard.MasterEntry + nil, // 534: tutorial.ResNotifyCard.HandbookEntry + nil, // 535: tutorial.ResMining.MapEntry + nil, // 536: tutorial.ReqMiningTake.MapEntry + nil, // 537: tutorial.ResActRed.RedEntry + nil, // 538: tutorial.ResItem.ItemEntry + nil, // 539: tutorial.ItemNotify.ItemEntry + nil, // 540: tutorial.ResGuessColor.OMapEntry + nil, // 541: tutorial.ReqGuessColorTake.OMapEntry + nil, // 542: tutorial.GuessColorInfo.MapEntry + nil, // 543: tutorial.ResPlayroom.PlayroomEntry + nil, // 544: tutorial.ResPlayroom.MoodEntry + nil, // 545: tutorial.ResPlayroom.PhysiologyEntry + nil, // 546: tutorial.ResPlayroom.DressEntry + nil, // 547: tutorial.ResPlayroom.DressSetEntry + nil, // 548: tutorial.ResPlayroom.WeeklyDiscountEntry + nil, // 549: tutorial.ReqPlayroomDressSet.DressSetEntry + nil, // 550: tutorial.NotifyPlayroomMood.MoodEntry + nil, // 551: tutorial.NotifyPlayroomMood.PhysiologyEntry + nil, // 552: tutorial.ResPlayroomInfo.PlayroomEntry + nil, // 553: tutorial.ResPlayroomInfo.ItemsEntry + nil, // 554: tutorial.ResPlayroomInfo.FlipEntry + nil, // 555: tutorial.ResPlayroomInfo.EmojiEntry + nil, // 556: tutorial.ResPlayroomInfo.DressSetEntry + nil, // 557: tutorial.ResPlayroomGame.ItemsEntry + nil, // 558: tutorial.ReqPlayroomSetRoom.PlayroomEntry } var file_proto_Gameapi_proto_depIdxs = []int32{ - 487, // 0: tutorial.ResChessColorData.mChessColorData:type_name -> tutorial.ResChessColorData.MChessColorDataEntry + 489, // 0: tutorial.ResChessColorData.mChessColorData:type_name -> tutorial.ResChessColorData.MChessColorDataEntry 6, // 1: tutorial.ReqLogin.type:type_name -> tutorial.LOGIN_TYPE 2, // 2: tutorial.ResId2Verify.ResultCode:type_name -> tutorial.RES_CODE - 488, // 3: tutorial.UpdateBaseItemInfo.mUpdateItem:type_name -> tutorial.UpdateBaseItemInfo.MUpdateItemEntry - 489, // 4: tutorial.ResPlayerChessData.mChessData:type_name -> tutorial.ResPlayerChessData.MChessDataEntry - 73, // 5: tutorial.ResPlayerChessInfo.ChessBag:type_name -> tutorial.ChessBag - 54, // 6: tutorial.ResPlayerChessInfo.PartBag:type_name -> tutorial.PartBag + 490, // 3: tutorial.UpdateBaseItemInfo.mUpdateItem:type_name -> tutorial.UpdateBaseItemInfo.MUpdateItemEntry + 491, // 4: tutorial.ResPlayerChessData.mChessData:type_name -> tutorial.ResPlayerChessData.MChessDataEntry + 74, // 5: tutorial.ResPlayerChessInfo.ChessBag:type_name -> tutorial.ChessBag + 55, // 6: tutorial.ResPlayerChessInfo.PartBag:type_name -> tutorial.PartBag 2, // 7: tutorial.ResGetChessRetireReward.code:type_name -> tutorial.RES_CODE - 55, // 8: tutorial.PartBag.PartBagGrids:type_name -> tutorial.PartBagGrid - 490, // 9: tutorial.ReqPutPartInBag.mChessData:type_name -> tutorial.ReqPutPartInBag.MChessDataEntry + 56, // 8: tutorial.PartBag.PartBagGrids:type_name -> tutorial.PartBagGrid + 492, // 9: tutorial.ReqPutPartInBag.mChessData:type_name -> tutorial.ReqPutPartInBag.MChessDataEntry 2, // 10: tutorial.ResPutPartInBag.code:type_name -> tutorial.RES_CODE 1, // 11: tutorial.ChessHandle.type:type_name -> tutorial.HANDLE_TYPE - 491, // 12: tutorial.UpdatePlayerChessData.mChessData:type_name -> tutorial.UpdatePlayerChessData.MChessDataEntry - 58, // 13: tutorial.UpdatePlayerChessData.mChessHandle:type_name -> tutorial.ChessHandle + 493, // 12: tutorial.UpdatePlayerChessData.mChessData:type_name -> tutorial.UpdatePlayerChessData.MChessDataEntry + 59, // 13: tutorial.UpdatePlayerChessData.mChessHandle:type_name -> tutorial.ChessHandle 2, // 14: tutorial.ResUpdatePlayerChessData.code:type_name -> tutorial.RES_CODE - 492, // 15: tutorial.ReqSeparateChess.mChessData:type_name -> tutorial.ReqSeparateChess.MChessDataEntry + 494, // 15: tutorial.ReqSeparateChess.mChessData:type_name -> tutorial.ReqSeparateChess.MChessDataEntry 2, // 16: tutorial.ResSeparateChess.code:type_name -> tutorial.RES_CODE - 493, // 17: tutorial.ReqUpgradeChess.mChessData:type_name -> tutorial.ReqUpgradeChess.MChessDataEntry + 495, // 17: tutorial.ReqUpgradeChess.mChessData:type_name -> tutorial.ReqUpgradeChess.MChessDataEntry 2, // 18: tutorial.ResUpgradeChess.code:type_name -> tutorial.RES_CODE - 494, // 19: tutorial.ReqGetChessFromBuff.mChessData:type_name -> tutorial.ReqGetChessFromBuff.MChessDataEntry + 496, // 19: tutorial.ReqGetChessFromBuff.mChessData:type_name -> tutorial.ReqGetChessFromBuff.MChessDataEntry 2, // 20: tutorial.ResGetChessFromBuff.code:type_name -> tutorial.RES_CODE 8, // 21: tutorial.ReqChessEx.Type:type_name -> tutorial.CHESS_EX_TYPE - 495, // 22: tutorial.ReqChessEx.mChessData:type_name -> tutorial.ReqChessEx.MChessDataEntry + 497, // 22: tutorial.ReqChessEx.mChessData:type_name -> tutorial.ReqChessEx.MChessDataEntry 2, // 23: tutorial.ResChessEx.code:type_name -> tutorial.RES_CODE - 496, // 24: tutorial.ReqSourceChest.mChessData:type_name -> tutorial.ReqSourceChest.MChessDataEntry + 498, // 24: tutorial.ReqSourceChest.mChessData:type_name -> tutorial.ReqSourceChest.MChessDataEntry 2, // 25: tutorial.ResSourceChest.code:type_name -> tutorial.RES_CODE - 497, // 26: tutorial.ReqPlayroomOutline.mChessData:type_name -> tutorial.ReqPlayroomOutline.MChessDataEntry + 499, // 26: tutorial.ReqPlayroomOutline.mChessData:type_name -> tutorial.ReqPlayroomOutline.MChessDataEntry 2, // 27: tutorial.ResPlayroomOutline.code:type_name -> tutorial.RES_CODE - 74, // 28: tutorial.ChessBag.ChessBagGrids:type_name -> tutorial.ChessBagGrid - 498, // 29: tutorial.ReqPutChessInBag.mChessData:type_name -> tutorial.ReqPutChessInBag.MChessDataEntry + 75, // 28: tutorial.ChessBag.ChessBagGrids:type_name -> tutorial.ChessBagGrid + 500, // 29: tutorial.ReqPutChessInBag.mChessData:type_name -> tutorial.ReqPutChessInBag.MChessDataEntry 2, // 30: tutorial.ResPutChessInBag.code:type_name -> tutorial.RES_CODE - 499, // 31: tutorial.ReqTakeChessOutBag.mChessData:type_name -> tutorial.ReqTakeChessOutBag.MChessDataEntry + 501, // 31: tutorial.ReqTakeChessOutBag.mChessData:type_name -> tutorial.ReqTakeChessOutBag.MChessDataEntry 2, // 32: tutorial.ResTakeChessOutBag.code:type_name -> tutorial.RES_CODE 2, // 33: tutorial.ResBuyChessBagGrid.code:type_name -> tutorial.RES_CODE - 500, // 34: tutorial.ResPlayerBriefProfileData.SetEmoji:type_name -> tutorial.ResPlayerBriefProfileData.SetEmojiEntry + 502, // 34: tutorial.ResPlayerBriefProfileData.SetEmoji:type_name -> tutorial.ResPlayerBriefProfileData.SetEmojiEntry 2, // 35: tutorial.ResSetEnergyMul.ResultCode:type_name -> tutorial.RES_CODE 9, // 36: tutorial.ReqLang.Lang:type_name -> tutorial.LANG_TYPE 2, // 37: tutorial.ResLang.ResultCode:type_name -> tutorial.RES_CODE 9, // 38: tutorial.BaseInfo.Lang:type_name -> tutorial.LANG_TYPE - 192, // 39: tutorial.UserInfo.AvatarList:type_name -> tutorial.AvatarInfo - 188, // 40: tutorial.UserInfo.FaceList:type_name -> tutorial.FaceInfo - 195, // 41: tutorial.UserInfo.EmojiList:type_name -> tutorial.EmojiInfo - 501, // 42: tutorial.UserInfo.SetEmoji:type_name -> tutorial.UserInfo.SetEmojiEntry + 193, // 39: tutorial.UserInfo.AvatarList:type_name -> tutorial.AvatarInfo + 189, // 40: tutorial.UserInfo.FaceList:type_name -> tutorial.FaceInfo + 196, // 41: tutorial.UserInfo.EmojiList:type_name -> tutorial.EmojiInfo + 503, // 42: tutorial.UserInfo.SetEmoji:type_name -> tutorial.UserInfo.SetEmojiEntry 2, // 43: tutorial.ResSetName.ResultCode:type_name -> tutorial.RES_CODE 2, // 44: tutorial.ResSetPetName.ResultCode:type_name -> tutorial.RES_CODE 2, // 45: tutorial.ResBuyEnergy.Code:type_name -> tutorial.RES_CODE 2, // 46: tutorial.ResGetEnergyByAD.Code:type_name -> tutorial.RES_CODE 2, // 47: tutorial.ResGetHandbookReward.Code:type_name -> tutorial.RES_CODE - 102, // 48: tutorial.Handbook.Handbooks:type_name -> tutorial.HandbookInfo + 103, // 48: tutorial.Handbook.Handbooks:type_name -> tutorial.HandbookInfo 2, // 49: tutorial.ResHandbookAllReward.Code:type_name -> tutorial.RES_CODE - 502, // 50: tutorial.ReqRewardOrder.mChessData:type_name -> tutorial.ReqRewardOrder.MChessDataEntry + 504, // 50: tutorial.ReqRewardOrder.mChessData:type_name -> tutorial.ReqRewardOrder.MChessDataEntry 2, // 51: tutorial.ResRewardOrder.Code:type_name -> tutorial.RES_CODE 2, // 52: tutorial.ResDelOrder.Code:type_name -> tutorial.RES_CODE - 169, // 53: tutorial.Order.Items:type_name -> tutorial.ItemInfo - 113, // 54: tutorial.ResOrderList.OrderList:type_name -> tutorial.Order - 116, // 55: tutorial.ResDecorateInfo.Parts:type_name -> tutorial.DecoratePart - 169, // 56: tutorial.DecoratePart.Items:type_name -> tutorial.ItemInfo + 170, // 53: tutorial.Order.Items:type_name -> tutorial.ItemInfo + 114, // 54: tutorial.ResOrderList.OrderList:type_name -> tutorial.Order + 117, // 55: tutorial.ResDecorateInfo.Parts:type_name -> tutorial.DecoratePart + 170, // 56: tutorial.DecoratePart.Items:type_name -> tutorial.ItemInfo 2, // 57: tutorial.ResDecorate.Code:type_name -> tutorial.RES_CODE 2, // 58: tutorial.ResDecorateAll.Code:type_name -> tutorial.RES_CODE 2, // 59: tutorial.ResAreaReward.Code:type_name -> tutorial.RES_CODE - 124, // 60: tutorial.ResCardInfo.CardList:type_name -> tutorial.Card - 503, // 61: tutorial.ResCardInfo.AllCard:type_name -> tutorial.ResCardInfo.AllCardEntry - 504, // 62: tutorial.ResCardInfo.Handbook:type_name -> tutorial.ResCardInfo.HandbookEntry + 125, // 60: tutorial.ResCardInfo.CardList:type_name -> tutorial.Card + 505, // 61: tutorial.ResCardInfo.AllCard:type_name -> tutorial.ResCardInfo.AllCardEntry + 506, // 62: tutorial.ResCardInfo.Handbook:type_name -> tutorial.ResCardInfo.HandbookEntry 2, // 63: tutorial.ResCardSeasonFirstReward.Code:type_name -> tutorial.RES_CODE 2, // 64: tutorial.ResCardHandbookReward.Code:type_name -> tutorial.RES_CODE 2, // 65: tutorial.ResMasterCard.Code:type_name -> tutorial.RES_CODE @@ -30451,235 +30514,76 @@ var file_proto_Gameapi_proto_depIdxs = []int32{ 2, // 78: tutorial.ResGetFriendCard.Code:type_name -> tutorial.RES_CODE 2, // 79: tutorial.ResGuideReward.Code:type_name -> tutorial.RES_CODE 2, // 80: tutorial.ResGuidePlayroom.Code:type_name -> tutorial.RES_CODE - 505, // 81: tutorial.ResGuildInfo.Reward:type_name -> tutorial.ResGuildInfo.RewardEntry - 506, // 82: tutorial.ResGuideInfo.Reward:type_name -> tutorial.ResGuideInfo.RewardEntry - 169, // 83: tutorial.ResItemPop.Items:type_name -> tutorial.ItemInfo - 170, // 84: tutorial.ResItemPop.CardPacks:type_name -> tutorial.CardPack - 507, // 85: tutorial.ResGuideTask.Task:type_name -> tutorial.ResGuideTask.TaskEntry - 180, // 86: tutorial.GuideTask.Progress:type_name -> tutorial.QuestProgress + 507, // 81: tutorial.ResGuildInfo.Reward:type_name -> tutorial.ResGuildInfo.RewardEntry + 508, // 82: tutorial.ResGuideInfo.Reward:type_name -> tutorial.ResGuideInfo.RewardEntry + 170, // 83: tutorial.ResItemPop.Items:type_name -> tutorial.ItemInfo + 171, // 84: tutorial.ResItemPop.CardPacks:type_name -> tutorial.CardPack + 509, // 85: tutorial.ResGuideTask.Task:type_name -> tutorial.ResGuideTask.TaskEntry + 181, // 86: tutorial.GuideTask.Progress:type_name -> tutorial.QuestProgress 2, // 87: tutorial.ResGetGuideTaskReward.Code:type_name -> tutorial.RES_CODE 2, // 88: tutorial.ResGetGuideActiveReward.Code:type_name -> tutorial.RES_CODE - 508, // 89: tutorial.ResDailyTask.WeekReward:type_name -> tutorial.ResDailyTask.WeekRewardEntry - 509, // 90: tutorial.ResDailyTask.DailyTask:type_name -> tutorial.ResDailyTask.DailyTaskEntry - 169, // 91: tutorial.DailyWeek.Items:type_name -> tutorial.ItemInfo - 180, // 92: tutorial.DailyTask.Progress:type_name -> tutorial.QuestProgress - 169, // 93: tutorial.DailyTask.Items:type_name -> tutorial.ItemInfo + 510, // 89: tutorial.ResDailyTask.WeekReward:type_name -> tutorial.ResDailyTask.WeekRewardEntry + 511, // 90: tutorial.ResDailyTask.DailyTask:type_name -> tutorial.ResDailyTask.DailyTaskEntry + 170, // 91: tutorial.DailyWeek.Items:type_name -> tutorial.ItemInfo + 181, // 92: tutorial.DailyTask.Progress:type_name -> tutorial.QuestProgress + 170, // 93: tutorial.DailyTask.Items:type_name -> tutorial.ItemInfo 2, // 94: tutorial.ResGetDailyTaskReward.Code:type_name -> tutorial.RES_CODE 2, // 95: tutorial.ResGetDailyWeekReward.Code:type_name -> tutorial.RES_CODE 2, // 96: tutorial.ResDailyUnlock.Code:type_name -> tutorial.RES_CODE - 188, // 97: tutorial.ResFaceInfo.FaceList:type_name -> tutorial.FaceInfo + 189, // 97: tutorial.ResFaceInfo.FaceList:type_name -> tutorial.FaceInfo 2, // 98: tutorial.ResSetFace.Code:type_name -> tutorial.RES_CODE - 192, // 99: tutorial.ResAvatarInfo.AvatarList:type_name -> tutorial.AvatarInfo + 193, // 99: tutorial.ResAvatarInfo.AvatarList:type_name -> tutorial.AvatarInfo 2, // 100: tutorial.ResSetAvatar.Code:type_name -> tutorial.RES_CODE 2, // 101: tutorial.ResSetEmoji.Code:type_name -> tutorial.RES_CODE - 199, // 102: tutorial.ResSevenLogin.WeekReward:type_name -> tutorial.SevenLoginReward - 199, // 103: tutorial.ResSevenLogin.MonthReward:type_name -> tutorial.SevenLoginReward - 169, // 104: tutorial.SevenLoginReward.Item1:type_name -> tutorial.ItemInfo - 169, // 105: tutorial.SevenLoginReward.Item2:type_name -> tutorial.ItemInfo - 169, // 106: tutorial.SevenLoginReward.Item3:type_name -> tutorial.ItemInfo + 200, // 102: tutorial.ResSevenLogin.WeekReward:type_name -> tutorial.SevenLoginReward + 200, // 103: tutorial.ResSevenLogin.MonthReward:type_name -> tutorial.SevenLoginReward + 170, // 104: tutorial.SevenLoginReward.Item1:type_name -> tutorial.ItemInfo + 170, // 105: tutorial.SevenLoginReward.Item2:type_name -> tutorial.ItemInfo + 170, // 106: tutorial.SevenLoginReward.Item3:type_name -> tutorial.ItemInfo 2, // 107: tutorial.ResGetSevenLoginReward.Code:type_name -> tutorial.RES_CODE 2, // 108: tutorial.ResGetMonthLoginReward.Code:type_name -> tutorial.RES_CODE - 205, // 109: tutorial.ResActivity.ActiveList:type_name -> tutorial.ActivityInfo + 206, // 109: tutorial.ResActivity.ActiveList:type_name -> tutorial.ActivityInfo 2, // 110: tutorial.ResActivityReward.Code:type_name -> tutorial.RES_CODE - 510, // 111: tutorial.ResLimitEvent.LimitEventList:type_name -> tutorial.ResLimitEvent.LimitEventListEntry - 511, // 112: tutorial.ResLimitEventProgress.ProgressReward:type_name -> tutorial.ResLimitEventProgress.ProgressRewardEntry + 512, // 111: tutorial.ResLimitEvent.LimitEventList:type_name -> tutorial.ResLimitEvent.LimitEventListEntry + 513, // 112: tutorial.ResLimitEventProgress.ProgressReward:type_name -> tutorial.ResLimitEventProgress.ProgressRewardEntry 2, // 113: tutorial.ResLimitEventReward.Code:type_name -> tutorial.RES_CODE 2, // 114: tutorial.ResSelectLimitEvent.Code:type_name -> tutorial.RES_CODE - 512, // 115: tutorial.LimitEvent.Param:type_name -> tutorial.LimitEvent.ParamEntry - 513, // 116: tutorial.ReqLimitEventLuckyCat.mChessData:type_name -> tutorial.ReqLimitEventLuckyCat.MChessDataEntry + 514, // 115: tutorial.LimitEvent.Param:type_name -> tutorial.LimitEvent.ParamEntry + 515, // 116: tutorial.ReqLimitEventLuckyCat.mChessData:type_name -> tutorial.ReqLimitEventLuckyCat.MChessDataEntry 2, // 117: tutorial.ResLimitEventLuckyCat.Code:type_name -> tutorial.RES_CODE 2, // 118: tutorial.ResLimitSenceReward.Code:type_name -> tutorial.RES_CODE - 169, // 119: tutorial.ResChessRainReward.Items:type_name -> tutorial.ItemInfo + 170, // 119: tutorial.ResChessRainReward.Items:type_name -> tutorial.ItemInfo 2, // 120: tutorial.ResFastProduceReward.Code:type_name -> tutorial.RES_CODE 2, // 121: tutorial.ResCatTrickReward.Code:type_name -> tutorial.RES_CODE - 232, // 122: tutorial.ResSearchPlayer.List:type_name -> tutorial.ResPlayerSimple - 514, // 123: tutorial.ResFriendPlayerSimple.Emoji:type_name -> tutorial.ResFriendPlayerSimple.EmojiEntry - 515, // 124: tutorial.ResFriendPlayerSimple.Playroom:type_name -> tutorial.ResFriendPlayerSimple.PlayroomEntry - 516, // 125: tutorial.ResFriendPlayerSimple.DressSet:type_name -> tutorial.ResFriendPlayerSimple.DressSetEntry - 233, // 126: tutorial.ResFriendPlayerSimple.Last:type_name -> tutorial.ActLog - 517, // 127: tutorial.ResFriendPlayerSimple.Physiology:type_name -> tutorial.ResFriendPlayerSimple.PhysiologyEntry - 518, // 128: tutorial.ResPlayerSimple.Emoji:type_name -> tutorial.ResPlayerSimple.EmojiEntry - 232, // 129: tutorial.ResFriendLog.Player:type_name -> tutorial.ResPlayerSimple - 235, // 130: tutorial.NotifyFriendLog.info:type_name -> tutorial.ResFriendLog - 237, // 131: tutorial.NotifyFriendLog.Bubble:type_name -> tutorial.FriendBubbleInfo - 169, // 132: tutorial.FriendBubbleInfo.Items:type_name -> tutorial.ItemInfo - 239, // 133: tutorial.NotifyFriendCard.Info:type_name -> tutorial.ResFriendCard - 519, // 134: tutorial.ResKv.kv:type_name -> tutorial.ResKv.KvEntry + 233, // 122: tutorial.ResSearchPlayer.List:type_name -> tutorial.ResPlayerSimple + 516, // 123: tutorial.ResFriendPlayerSimple.Emoji:type_name -> tutorial.ResFriendPlayerSimple.EmojiEntry + 517, // 124: tutorial.ResFriendPlayerSimple.Playroom:type_name -> tutorial.ResFriendPlayerSimple.PlayroomEntry + 518, // 125: tutorial.ResFriendPlayerSimple.DressSet:type_name -> tutorial.ResFriendPlayerSimple.DressSetEntry + 234, // 126: tutorial.ResFriendPlayerSimple.Last:type_name -> tutorial.ActLog + 519, // 127: tutorial.ResFriendPlayerSimple.Physiology:type_name -> tutorial.ResFriendPlayerSimple.PhysiologyEntry + 520, // 128: tutorial.ResPlayerSimple.Emoji:type_name -> tutorial.ResPlayerSimple.EmojiEntry + 233, // 129: tutorial.ResFriendLog.Player:type_name -> tutorial.ResPlayerSimple + 236, // 130: tutorial.NotifyFriendLog.info:type_name -> tutorial.ResFriendLog + 238, // 131: tutorial.NotifyFriendLog.Bubble:type_name -> tutorial.FriendBubbleInfo + 170, // 132: tutorial.FriendBubbleInfo.Items:type_name -> tutorial.ItemInfo + 240, // 133: tutorial.NotifyFriendCard.Info:type_name -> tutorial.ResFriendCard + 521, // 134: tutorial.ResKv.kv:type_name -> tutorial.ResKv.KvEntry 2, // 135: tutorial.ResFriendByCode.Code:type_name -> tutorial.RES_CODE - 232, // 136: tutorial.ResFriendByCode.Player:type_name -> tutorial.ResPlayerSimple - 232, // 137: tutorial.ResFriendRecommend.List:type_name -> tutorial.ResPlayerSimple + 233, // 136: tutorial.ResFriendByCode.Player:type_name -> tutorial.ResPlayerSimple + 233, // 137: tutorial.ResFriendRecommend.List:type_name -> tutorial.ResPlayerSimple 2, // 138: tutorial.ResFriendIgnore.Code:type_name -> tutorial.RES_CODE - 232, // 139: tutorial.ResFriendList.FriendList:type_name -> tutorial.ResPlayerSimple + 233, // 139: tutorial.ResFriendList.FriendList:type_name -> tutorial.ResPlayerSimple 2, // 140: tutorial.ResAddNpc.Code:type_name -> tutorial.RES_CODE - 254, // 141: tutorial.ResFriendApply.ApplyList:type_name -> tutorial.ResFriendApplyInfo - 232, // 142: tutorial.ResFriendApplyInfo.Player:type_name -> tutorial.ResPlayerSimple - 239, // 143: tutorial.ResFriendCardMsg.MsgList:type_name -> tutorial.ResFriendCard - 254, // 144: tutorial.ResWishApplyList.ApplyList:type_name -> tutorial.ResFriendApplyInfo + 255, // 141: tutorial.ResFriendApply.ApplyList:type_name -> tutorial.ResFriendApplyInfo + 233, // 142: tutorial.ResFriendApplyInfo.Player:type_name -> tutorial.ResPlayerSimple + 240, // 143: tutorial.ResFriendCardMsg.MsgList:type_name -> tutorial.ResFriendCard + 255, // 144: tutorial.ResWishApplyList.ApplyList:type_name -> tutorial.ResFriendApplyInfo 2, // 145: tutorial.ResWishApply.Code:type_name -> tutorial.RES_CODE - 235, // 146: tutorial.ResFriendTimeLine.Log:type_name -> tutorial.ResFriendLog - 263, // 147: tutorial.ResFriendTimeLine.Reply:type_name -> tutorial.ResFriendReply - 232, // 148: tutorial.ResFriendReply.Player:type_name -> tutorial.ResPlayerSimple - 169, // 149: tutorial.ResFriendReply.Items:type_name -> tutorial.ItemInfo + 236, // 146: tutorial.ResFriendTimeLine.Log:type_name -> tutorial.ResFriendLog + 264, // 147: tutorial.ResFriendTimeLine.Reply:type_name -> tutorial.ResFriendReply + 233, // 148: tutorial.ResFriendReply.Player:type_name -> tutorial.ResPlayerSimple + 170, // 149: tutorial.ResFriendReply.Items:type_name -> tutorial.ItemInfo 2, // 150: tutorial.ResFriendReplyHandle.Code:type_name -> tutorial.RES_CODE -<<<<<<< HEAD - 237, // 151: tutorial.ResFriendBubble.Bubble:type_name -> tutorial.FriendBubbleInfo - 2, // 152: tutorial.ResFriendTLUpvote.Code:type_name -> tutorial.RES_CODE - 2, // 153: tutorial.ResFriendTReward.Code:type_name -> tutorial.RES_CODE - 232, // 154: tutorial.ResFriendApplyNotify.Player:type_name -> tutorial.ResPlayerSimple - 2, // 155: tutorial.ResApplyFriend.Code:type_name -> tutorial.RES_CODE - 2, // 156: tutorial.ResAgreeFriend.Code:type_name -> tutorial.RES_CODE - 232, // 157: tutorial.ResAgreeFriend.Player:type_name -> tutorial.ResPlayerSimple - 2, // 158: tutorial.ResRefuseFriend.Code:type_name -> tutorial.RES_CODE - 2, // 159: tutorial.ResDelFriend.Code:type_name -> tutorial.RES_CODE - 520, // 160: tutorial.ResRank.RankList:type_name -> tutorial.ResRank.RankListEntry - 521, // 161: tutorial.ResMailList.MailList:type_name -> tutorial.ResMailList.MailListEntry - 169, // 162: tutorial.MailInfo.Items:type_name -> tutorial.ItemInfo - 284, // 163: tutorial.MailNotify.Info:type_name -> tutorial.MailInfo - 2, // 164: tutorial.ResReadMail.Code:type_name -> tutorial.RES_CODE - 2, // 165: tutorial.ResGetMailReward.Code:type_name -> tutorial.RES_CODE - 2, // 166: tutorial.ResDeleteMail.Code:type_name -> tutorial.RES_CODE - 522, // 167: tutorial.ResCharge.SpecialShop:type_name -> tutorial.ResCharge.SpecialShopEntry - 523, // 168: tutorial.ResCharge.ChessShop:type_name -> tutorial.ResCharge.ChessShopEntry - 524, // 169: tutorial.ResCharge.Gift:type_name -> tutorial.ResCharge.GiftEntry - 295, // 170: tutorial.ResCharge.Wish:type_name -> tutorial.WishList - 525, // 171: tutorial.ResCharge.WeeklyDiscount:type_name -> tutorial.ResCharge.WeeklyDiscountEntry - 2, // 172: tutorial.ResAddWish.Code:type_name -> tutorial.RES_CODE - 2, // 173: tutorial.ResGetWish.Code:type_name -> tutorial.RES_CODE - 2, // 174: tutorial.ResSendWishBeg.Code:type_name -> tutorial.RES_CODE - 2, // 175: tutorial.ResFreeShop.Code:type_name -> tutorial.RES_CODE - 2, // 176: tutorial.ResBuyChessShop.Code:type_name -> tutorial.RES_CODE - 526, // 177: tutorial.ReqBuyChessShop2.mChessData:type_name -> tutorial.ReqBuyChessShop2.MChessDataEntry - 2, // 178: tutorial.ResBuyChessShop2.Code:type_name -> tutorial.RES_CODE - 2, // 179: tutorial.ResRefreshChessShop.Code:type_name -> tutorial.RES_CODE - 527, // 180: tutorial.ResEndless.EndlessList:type_name -> tutorial.ResEndless.EndlessListEntry - 169, // 181: tutorial.ResEndlessInfo.Items:type_name -> tutorial.ItemInfo - 2, // 182: tutorial.ResEndlessReward.Code:type_name -> tutorial.RES_CODE - 2, // 183: tutorial.ResPiggyBankReward.Code:type_name -> tutorial.RES_CODE - 2, // 184: tutorial.ResChargeReceive.Code:type_name -> tutorial.RES_CODE - 2, // 185: tutorial.ResShippingOrder.Code:type_name -> tutorial.RES_CODE - 2, // 186: tutorial.ResChampshipReward.Code:type_name -> tutorial.RES_CODE - 2, // 187: tutorial.ResChampshipRankReward.Code:type_name -> tutorial.RES_CODE - 528, // 188: tutorial.ResChampshipRank.RankList:type_name -> tutorial.ResChampshipRank.RankListEntry - 529, // 189: tutorial.ResChampshipPreRank.RankList:type_name -> tutorial.ResChampshipPreRank.RankListEntry - 530, // 190: tutorial.ResNotifyCard.Card:type_name -> tutorial.ResNotifyCard.CardEntry - 531, // 191: tutorial.ResNotifyCard.Master:type_name -> tutorial.ResNotifyCard.MasterEntry - 532, // 192: tutorial.ResNotifyCard.Handbook:type_name -> tutorial.ResNotifyCard.HandbookEntry - 2, // 193: tutorial.ResSetFacebookUrl.Code:type_name -> tutorial.RES_CODE - 533, // 194: tutorial.ResMining.Map:type_name -> tutorial.ResMining.MapEntry - 534, // 195: tutorial.ReqMiningTake.Map:type_name -> tutorial.ReqMiningTake.MapEntry - 2, // 196: tutorial.ResMiningTake.Code:type_name -> tutorial.RES_CODE - 2, // 197: tutorial.ResMiningReward.Code:type_name -> tutorial.RES_CODE - 2, // 198: tutorial.ResActPassReward.Code:type_name -> tutorial.RES_CODE - 535, // 199: tutorial.ResActRed.Red:type_name -> tutorial.ResActRed.RedEntry - 205, // 200: tutorial.ActivityNotify.Info:type_name -> tutorial.ActivityInfo - 536, // 201: tutorial.ResItem.Item:type_name -> tutorial.ResItem.ItemEntry - 537, // 202: tutorial.ItemNotify.Item:type_name -> tutorial.ItemNotify.ItemEntry - 369, // 203: tutorial.ResGuessColor.MapList:type_name -> tutorial.GuessColorInfo - 538, // 204: tutorial.ResGuessColor.OMap:type_name -> tutorial.ResGuessColor.OMapEntry - 367, // 205: tutorial.ResGuessColor.Opponent:type_name -> tutorial.opponent - 369, // 206: tutorial.ReqGuessColorTake.Map:type_name -> tutorial.GuessColorInfo - 539, // 207: tutorial.ReqGuessColorTake.OMap:type_name -> tutorial.ReqGuessColorTake.OMapEntry - 540, // 208: tutorial.GuessColorInfo.Map:type_name -> tutorial.GuessColorInfo.MapEntry - 2, // 209: tutorial.ResGuessColorTake.Code:type_name -> tutorial.RES_CODE - 2, // 210: tutorial.ResGuessColorReward.Code:type_name -> tutorial.RES_CODE - 375, // 211: tutorial.ResRace.Opponent:type_name -> tutorial.raceopponent - 2, // 212: tutorial.ResRaceStart.Code:type_name -> tutorial.RES_CODE - 2, // 213: tutorial.ResRaceReward.Code:type_name -> tutorial.RES_CODE - 169, // 214: tutorial.ResPlayroom.Items:type_name -> tutorial.ItemInfo - 409, // 215: tutorial.ResPlayroom.Opponent:type_name -> tutorial.RoomOpponent - 408, // 216: tutorial.ResPlayroom.Friend:type_name -> tutorial.FriendRoom - 541, // 217: tutorial.ResPlayroom.Playroom:type_name -> tutorial.ResPlayroom.PlayroomEntry - 394, // 218: tutorial.ResPlayroom.collect:type_name -> tutorial.PlayroomCollectInfo - 542, // 219: tutorial.ResPlayroom.Mood:type_name -> tutorial.ResPlayroom.MoodEntry - 169, // 220: tutorial.ResPlayroom.LoseItem:type_name -> tutorial.ItemInfo - 404, // 221: tutorial.ResPlayroom.Chip:type_name -> tutorial.ChipInfo - 543, // 222: tutorial.ResPlayroom.Physiology:type_name -> tutorial.ResPlayroom.PhysiologyEntry - 544, // 223: tutorial.ResPlayroom.Dress:type_name -> tutorial.ResPlayroom.DressEntry - 545, // 224: tutorial.ResPlayroom.DressSet:type_name -> tutorial.ResPlayroom.DressSetEntry - 393, // 225: tutorial.ResPlayroom.PetAir:type_name -> tutorial.PlayroomAirInfo - 179, // 226: tutorial.ResPlayroom.DailyTask:type_name -> tutorial.DailyTask - 406, // 227: tutorial.ResPlayroom.AdItem:type_name -> tutorial.AdItem - 408, // 228: tutorial.ResPlayroom.Target:type_name -> tutorial.FriendRoom - 546, // 229: tutorial.ResPlayroom.WeeklyDiscount:type_name -> tutorial.ResPlayroom.WeeklyDiscountEntry - 179, // 230: tutorial.NotifyPlayroomTask.DailyTask:type_name -> tutorial.DailyTask - 2, // 231: tutorial.ResPlayroomTask.Code:type_name -> tutorial.RES_CODE - 2, // 232: tutorial.ResPlayroomTaskReward.Code:type_name -> tutorial.RES_CODE - 2, // 233: tutorial.ResPlayroomUnlock.Code:type_name -> tutorial.RES_CODE - 2, // 234: tutorial.ResPlayroomUpvote.Code:type_name -> tutorial.RES_CODE - 392, // 235: tutorial.PlayroomDress.List:type_name -> tutorial.PlayroomDressInfo - 547, // 236: tutorial.ReqPlayroomDressSet.DressSet:type_name -> tutorial.ReqPlayroomDressSet.DressSetEntry - 2, // 237: tutorial.ResPlayroomDressSet.Code:type_name -> tutorial.RES_CODE - 2, // 238: tutorial.ResPlayroomPetAirSet.Code:type_name -> tutorial.RES_CODE - 2, // 239: tutorial.ResPlayroomWrokOutline.Code:type_name -> tutorial.RES_CODE - 169, // 240: tutorial.NotifyPlayroomLose.LoseItem:type_name -> tutorial.ItemInfo - 404, // 241: tutorial.NotifyPlayroomLose.Chip:type_name -> tutorial.ChipInfo - 548, // 242: tutorial.NotifyPlayroomMood.Mood:type_name -> tutorial.NotifyPlayroomMood.MoodEntry - 549, // 243: tutorial.NotifyPlayroomMood.Physiology:type_name -> tutorial.NotifyPlayroomMood.PhysiologyEntry - 406, // 244: tutorial.NotifyPlayroomMood.AdItem:type_name -> tutorial.AdItem - 550, // 245: tutorial.ResPlayroomInfo.Playroom:type_name -> tutorial.ResPlayroomInfo.PlayroomEntry - 551, // 246: tutorial.ResPlayroomInfo.Items:type_name -> tutorial.ResPlayroomInfo.ItemsEntry - 552, // 247: tutorial.ResPlayroomInfo.flip:type_name -> tutorial.ResPlayroomInfo.FlipEntry - 553, // 248: tutorial.ResPlayroomInfo.Emoji:type_name -> tutorial.ResPlayroomInfo.EmojiEntry - 554, // 249: tutorial.ResPlayroomInfo.DressSet:type_name -> tutorial.ResPlayroomInfo.DressSetEntry - 2, // 250: tutorial.ResPlayroomFlip.Code:type_name -> tutorial.RES_CODE - 2, // 251: tutorial.ResPlayroomGuide.Code:type_name -> tutorial.RES_CODE - 2, // 252: tutorial.ResPlayroomFlipReward.Code:type_name -> tutorial.RES_CODE - 2, // 253: tutorial.ResPlayroomGame.Code:type_name -> tutorial.RES_CODE - 555, // 254: tutorial.ResPlayroomGame.Items:type_name -> tutorial.ResPlayroomGame.ItemsEntry - 169, // 255: tutorial.ResPlayroomGameShowReward.Items:type_name -> tutorial.ItemInfo - 2, // 256: tutorial.ResPlayroomInteract.Code:type_name -> tutorial.RES_CODE - 556, // 257: tutorial.ReqPlayroomSetRoom.Playroom:type_name -> tutorial.ReqPlayroomSetRoom.PlayroomEntry - 2, // 258: tutorial.ResPlayroomSetRoom.Code:type_name -> tutorial.RES_CODE - 2, // 259: tutorial.ResPlayroomSelectReward.Code:type_name -> tutorial.RES_CODE - 2, // 260: tutorial.ResPlayroomLose.Code:type_name -> tutorial.RES_CODE - 2, // 261: tutorial.ResPlayroomWork.Code:type_name -> tutorial.RES_CODE - 2, // 262: tutorial.ResPlayroomRest.Code:type_name -> tutorial.RES_CODE - 2, // 263: tutorial.ResPlayroomDraw.Code:type_name -> tutorial.RES_CODE - 2, // 264: tutorial.ResPlayroomChip.Code:type_name -> tutorial.RES_CODE - 2, // 265: tutorial.ResPlayroomBuyItem.Code:type_name -> tutorial.RES_CODE - 2, // 266: tutorial.ResPlayroomShop.Code:type_name -> tutorial.RES_CODE - 444, // 267: tutorial.ResFriendTreasure.List:type_name -> tutorial.TreasureInfo - 444, // 268: tutorial.ReqFriendTreasureStart.List:type_name -> tutorial.TreasureInfo - 2, // 269: tutorial.ResFriendTreasureStart.Code:type_name -> tutorial.RES_CODE - 2, // 270: tutorial.ResFriendTreasureEnd.Code:type_name -> tutorial.RES_CODE - 2, // 271: tutorial.ResFriendTreasureFilp.Code:type_name -> tutorial.RES_CODE - 455, // 272: tutorial.ResCollectInfo.Items:type_name -> tutorial.CollectItem - 169, // 273: tutorial.CollectItem.Items:type_name -> tutorial.ItemInfo - 2, // 274: tutorial.ResCollect.Code:type_name -> tutorial.RES_CODE - 460, // 275: tutorial.ResCatnip.GameList:type_name -> tutorial.CatnipGame - 461, // 276: tutorial.ResCatnip.FriendList:type_name -> tutorial.CatnipInvite - 232, // 277: tutorial.CatnipGame.Partner:type_name -> tutorial.ResPlayerSimple - 232, // 278: tutorial.CatnipInvite.Player:type_name -> tutorial.ResPlayerSimple - 2, // 279: tutorial.ResCatnipInvite.Code:type_name -> tutorial.RES_CODE - 2, // 280: tutorial.ResCatnipAgree.Code:type_name -> tutorial.RES_CODE - 2, // 281: tutorial.ResCatnipRefuse.Code:type_name -> tutorial.RES_CODE - 2, // 282: tutorial.ResCatnipMultiply.Code:type_name -> tutorial.RES_CODE - 2, // 283: tutorial.ResCatnipPlay.Code:type_name -> tutorial.RES_CODE - 2, // 284: tutorial.ResCatnipReward.Code:type_name -> tutorial.RES_CODE - 2, // 285: tutorial.ResCatnipGrandReward.Code:type_name -> tutorial.RES_CODE - 2, // 286: tutorial.ResCatnipEmoji.Code:type_name -> tutorial.RES_CODE - 172, // 287: tutorial.ResGuideTask.TaskEntry.value:type_name -> tutorial.GuideTask - 178, // 288: tutorial.ResDailyTask.WeekRewardEntry.value:type_name -> tutorial.DailyWeek - 179, // 289: tutorial.ResDailyTask.DailyTaskEntry.value:type_name -> tutorial.DailyTask - 215, // 290: tutorial.ResLimitEvent.LimitEventListEntry.value:type_name -> tutorial.LimitEvent - 232, // 291: tutorial.ResRank.RankListEntry.value:type_name -> tutorial.ResPlayerSimple - 284, // 292: tutorial.ResMailList.MailListEntry.value:type_name -> tutorial.MailInfo - 302, // 293: tutorial.ResCharge.SpecialShopEntry.value:type_name -> tutorial.ResSpecialShop - 303, // 294: tutorial.ResCharge.ChessShopEntry.value:type_name -> tutorial.ResChessShop - 294, // 295: tutorial.ResCharge.WeeklyDiscountEntry.value:type_name -> tutorial.WeeklyDiscountInfo - 314, // 296: tutorial.ResEndless.EndlessListEntry.value:type_name -> tutorial.ResEndlessInfo - 234, // 297: tutorial.ResChampshipRank.RankListEntry.value:type_name -> tutorial.ResPlayerRank - 234, // 298: tutorial.ResChampshipPreRank.RankListEntry.value:type_name -> tutorial.ResPlayerRank - 391, // 299: tutorial.ResPlayroom.DressEntry.value:type_name -> tutorial.PlayroomDress - 294, // 300: tutorial.ResPlayroom.WeeklyDiscountEntry.value:type_name -> tutorial.WeeklyDiscountInfo - 169, // 301: tutorial.ResPlayroomInfo.ItemsEntry.value:type_name -> tutorial.ItemInfo - 169, // 302: tutorial.ResPlayroomGame.ItemsEntry.value:type_name -> tutorial.ItemInfo - 303, // [303:303] is the sub-list for method output_type - 303, // [303:303] is the sub-list for method input_type - 303, // [303:303] is the sub-list for extension type_name - 303, // [303:303] is the sub-list for extension extendee - 0, // [0:303] is the sub-list for field type_name -======= 13, // 151: tutorial.ResFriendReplyHandle.ErrType:type_name -> tutorial.FRIEND_REPLY_HANDLE_ERR_TYPE 238, // 152: tutorial.ResFriendBubble.Bubble:type_name -> tutorial.FriendBubbleInfo 2, // 153: tutorial.ResFriendTLUpvote.Code:type_name -> tutorial.RES_CODE @@ -30839,7 +30743,6 @@ var file_proto_Gameapi_proto_depIdxs = []int32{ 305, // [305:305] is the sub-list for extension type_name 305, // [305:305] is the sub-list for extension extendee 0, // [0:305] is the sub-list for field type_name ->>>>>>> sdk } func init() { file_proto_Gameapi_proto_init() } @@ -30852,8 +30755,8 @@ func file_proto_Gameapi_proto_init() { File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: unsafe.Slice(unsafe.StringData(file_proto_Gameapi_proto_rawDesc), len(file_proto_Gameapi_proto_rawDesc)), - NumEnums: 13, - NumMessages: 544, + NumEnums: 14, + NumMessages: 545, NumExtensions: 0, NumServices: 0, },