diff --git a/src/server/game/PlayerBaseMod.go b/src/server/game/PlayerBaseMod.go index 01d40a0d..cffe0e71 100644 --- a/src/server/game/PlayerBaseMod.go +++ b/src/server/game/PlayerBaseMod.go @@ -700,6 +700,8 @@ func (p *PlayerBaseData) BackAsset() *msg.ResPlayerAsset { RecoverTime: p.Data.RecoverTime, Level: p.Data.Level, Exp: p.Data.Exp, + Login: p.Data.LoginTime, + Logout: p.Data.LogoutTime, } } diff --git a/src/server/game/PlayerChessMod.go b/src/server/game/PlayerChessMod.go index a47b531e..4fb0707f 100644 --- a/src/server/game/PlayerChessMod.go +++ b/src/server/game/PlayerChessMod.go @@ -149,7 +149,7 @@ func (p *PlayerChessData) HandleChess(handle_list []*msg.ChessHandle) error { return err } AddChessList = append(AddChessList, ChessId) - if !GoUtil.InArray(EmitId, []int{561, 562, 563, 564, 701, 702, 703, 704, 705, 706}) { // 宝箱生成的棋子不扣体力 + if !GoUtil.InArray(EmitId, []int{561, 562, 563, 564, 701, 702, 703, 704, 705, 706, 0}) { // 宝箱生成的棋子不扣体力 addChessCostEnergy++ } diff --git a/src/server/game/RegisterNetworkFunc.go b/src/server/game/RegisterNetworkFunc.go index f346d597..2c08cf3a 100644 --- a/src/server/game/RegisterNetworkFunc.go +++ b/src/server/game/RegisterNetworkFunc.go @@ -535,7 +535,7 @@ func ReqPutChessInBag(args []interface{}) error { data := player.GetIFGameData("PlayerChessData") err = data.(*PlayerChessData).UpdateChessData(req.MChessData) if err != nil { - player.SendErrClienRes(&msg.ResGetChessFromBuff{ + player.SendErrClienRes(&msg.ResPutChessInBag{ Code: msg.RES_CODE_FAIL, Msg: err.Error(), }) @@ -566,7 +566,7 @@ func ReqTakeChessOutBag(args []interface{}) error { data := player.GetIFGameData("PlayerChessData") err = data.(*PlayerChessData).UpdateChessData(req.MChessData) if err != nil { - player.SendErrClienRes(&msg.ResGetChessFromBuff{ + player.SendErrClienRes(&msg.ResTakeChessOutBag{ Code: msg.RES_CODE_FAIL, Msg: err.Error(), }) @@ -651,7 +651,7 @@ func ReqChessEx(args []interface{}) error { data := player.GetIFGameData("PlayerChessData") err = data.(*PlayerChessData).UpdateChessData(req.MChessData) if err != nil { - player.SendErrClienRes(&msg.ResGetChessFromBuff{ + player.SendErrClienRes(&msg.ResChessEx{ Code: msg.RES_CODE_FAIL, Msg: err.Error(), }) @@ -3080,3 +3080,50 @@ func ReqOfflineReconnectFunc(args []interface{}) error { G_GameLogicPtr.PackResInfo(a, "ResOfflineReconnect", data) return nil } + +// playroom 打工离线 +func ReqPlayroomOutline(args []interface{}) error { + _, player, buf := ParseArgs(args) + req := &msg.ReqPlayroomOutline{} + proto.Unmarshal(buf, req) + ChessMod := player.PlayMod.getChessMod() + if req.CostDia < 0 { + var itemList []*item.Item + item := item.NewItem(item.ITEM_DIAMOND_ID, int(req.CostDia)) + itemList = append(itemList, item) + err := player.HandleItem(itemList, "ChessEx") + if err != nil { + player.SendErrClienRes(&msg.ResPlayroomOutline{ + Code: msg.RES_CODE_FAIL, + Msg: err.Error(), + }) + return err + } + } + + err := ChessMod.ExChess(int(req.OldChessId), int(req.NewChessId)) + if err != nil { + player.SendErrClienRes(&msg.ResPlayroomOutline{ + Code: msg.RES_CODE_FAIL, + Msg: err.Error(), + }) + return err + } + HandbookMod := player.PlayMod.getHandbookMod() + HandbookMod.SetHandbook(int(req.NewChessId)) + data := player.GetIFGameData("PlayerChessData") + err = data.(*PlayerChessData).UpdateChessData(req.MChessData) + if err != nil { + player.SendErrClienRes(&msg.ResPlayroomOutline{ + Code: msg.RES_CODE_FAIL, + Msg: err.Error(), + }) + return err + } + player.PlayMod.save() + player.PushClientRes(ChessMod.BackData()) + player.PushClientRes(&msg.ResPlayroomOutline{ + Code: msg.RES_CODE_SUCCESS, + }) + return nil +} diff --git a/src/server/msg/Gameapi.pb.go b/src/server/msg/Gameapi.pb.go index e7e54861..ed7e0133 100644 --- a/src/server/msg/Gameapi.pb.go +++ b/src/server/msg/Gameapi.pb.go @@ -228,7 +228,7 @@ func (x UseItemResponse_CODE) Number() protoreflect.EnumNumber { // Deprecated: Use UseItemResponse_CODE.Descriptor instead. func (UseItemResponse_CODE) EnumDescriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{370, 0} + return file_Gameapi_proto_rawDescGZIP(), []int{372, 0} } type ClientReq struct { @@ -898,6 +898,8 @@ type ResPlayerAsset struct { Diamond int32 `protobuf:"varint,5,opt,name=diamond,proto3" json:"diamond,omitempty"` Level int32 `protobuf:"varint,6,opt,name=level,proto3" json:"level,omitempty"` Exp int32 `protobuf:"varint,7,opt,name=exp,proto3" json:"exp,omitempty"` + Login int32 `protobuf:"varint,8,opt,name=Login,proto3" json:"Login,omitempty"` + Logout int32 `protobuf:"varint,9,opt,name=Logout,proto3" json:"Logout,omitempty"` } func (x *ResPlayerAsset) Reset() { @@ -979,6 +981,20 @@ func (x *ResPlayerAsset) GetExp() int32 { return 0 } +func (x *ResPlayerAsset) GetLogin() int32 { + if x != nil { + return x.Login + } + return 0 +} + +func (x *ResPlayerAsset) GetLogout() int32 { + if x != nil { + return x.Logout + } + return 0 +} + // 客户端向服务器请求更新基本信息条目(没有响应) type UpdateBaseItemInfo struct { state protoimpl.MessageState @@ -2324,6 +2340,137 @@ func (x *ResChessEx) GetMsg() string { return "" } +// playroom 打工离线 +type ReqPlayroomOutline struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + OldChessId int32 `protobuf:"varint,1,opt,name=OldChessId,proto3" json:"OldChessId,omitempty"` + NewChessId int32 `protobuf:"varint,2,opt,name=NewChessId,proto3" json:"NewChessId,omitempty"` + CostDia int32 `protobuf:"varint,3,opt,name=CostDia,proto3" json:"CostDia,omitempty"` + Type int32 `protobuf:"varint,4,opt,name=Type,proto3" json:"Type,omitempty"` //1 气泡 2 宝箱解锁 3 快捷购买 4 打工离线 + MChessData map[string]int32 `protobuf:"bytes,5,rep,name=mChessData,proto3" json:"mChessData,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` +} + +func (x *ReqPlayroomOutline) Reset() { + *x = ReqPlayroomOutline{} + mi := &file_Gameapi_proto_msgTypes[33] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ReqPlayroomOutline) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ReqPlayroomOutline) ProtoMessage() {} + +func (x *ReqPlayroomOutline) ProtoReflect() protoreflect.Message { + mi := &file_Gameapi_proto_msgTypes[33] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use ReqPlayroomOutline.ProtoReflect.Descriptor instead. +func (*ReqPlayroomOutline) Descriptor() ([]byte, []int) { + return file_Gameapi_proto_rawDescGZIP(), []int{33} +} + +func (x *ReqPlayroomOutline) GetOldChessId() int32 { + if x != nil { + return x.OldChessId + } + return 0 +} + +func (x *ReqPlayroomOutline) GetNewChessId() int32 { + if x != nil { + return x.NewChessId + } + return 0 +} + +func (x *ReqPlayroomOutline) GetCostDia() int32 { + if x != nil { + return x.CostDia + } + return 0 +} + +func (x *ReqPlayroomOutline) GetType() int32 { + if x != nil { + return x.Type + } + return 0 +} + +func (x *ReqPlayroomOutline) GetMChessData() map[string]int32 { + if x != nil { + return x.MChessData + } + return nil +} + +type ResPlayroomOutline struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + 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"` +} + +func (x *ResPlayroomOutline) Reset() { + *x = ResPlayroomOutline{} + mi := &file_Gameapi_proto_msgTypes[34] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ResPlayroomOutline) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ResPlayroomOutline) ProtoMessage() {} + +func (x *ResPlayroomOutline) ProtoReflect() protoreflect.Message { + mi := &file_Gameapi_proto_msgTypes[34] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use ResPlayroomOutline.ProtoReflect.Descriptor instead. +func (*ResPlayroomOutline) Descriptor() ([]byte, []int) { + return file_Gameapi_proto_rawDescGZIP(), []int{34} +} + +func (x *ResPlayroomOutline) GetCode() RES_CODE { + if x != nil { + return x.Code + } + return RES_CODE_FAIL +} + +func (x *ResPlayroomOutline) GetMsg() string { + if x != nil { + return x.Msg + } + return "" +} + // 棋盘背包 type ChessBag struct { state protoimpl.MessageState @@ -2337,7 +2484,7 @@ type ChessBag struct { func (x *ChessBag) Reset() { *x = ChessBag{} - mi := &file_Gameapi_proto_msgTypes[33] + mi := &file_Gameapi_proto_msgTypes[35] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2349,7 +2496,7 @@ func (x *ChessBag) String() string { func (*ChessBag) ProtoMessage() {} func (x *ChessBag) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[33] + mi := &file_Gameapi_proto_msgTypes[35] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2362,7 +2509,7 @@ func (x *ChessBag) ProtoReflect() protoreflect.Message { // Deprecated: Use ChessBag.ProtoReflect.Descriptor instead. func (*ChessBag) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{33} + return file_Gameapi_proto_rawDescGZIP(), []int{35} } func (x *ChessBag) GetChessBagGrids() []*ChessBagGrid { @@ -2398,7 +2545,7 @@ type ChessBagGrid struct { func (x *ChessBagGrid) Reset() { *x = ChessBagGrid{} - mi := &file_Gameapi_proto_msgTypes[34] + mi := &file_Gameapi_proto_msgTypes[36] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2410,7 +2557,7 @@ func (x *ChessBagGrid) String() string { func (*ChessBagGrid) ProtoMessage() {} func (x *ChessBagGrid) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[34] + mi := &file_Gameapi_proto_msgTypes[36] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2423,7 +2570,7 @@ func (x *ChessBagGrid) ProtoReflect() protoreflect.Message { // Deprecated: Use ChessBagGrid.ProtoReflect.Descriptor instead. func (*ChessBagGrid) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{34} + return file_Gameapi_proto_rawDescGZIP(), []int{36} } func (x *ChessBagGrid) GetId() int32 { @@ -2461,7 +2608,7 @@ type ReqPutChessInBag struct { func (x *ReqPutChessInBag) Reset() { *x = ReqPutChessInBag{} - mi := &file_Gameapi_proto_msgTypes[35] + mi := &file_Gameapi_proto_msgTypes[37] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2473,7 +2620,7 @@ func (x *ReqPutChessInBag) String() string { func (*ReqPutChessInBag) ProtoMessage() {} func (x *ReqPutChessInBag) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[35] + mi := &file_Gameapi_proto_msgTypes[37] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2486,7 +2633,7 @@ func (x *ReqPutChessInBag) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPutChessInBag.ProtoReflect.Descriptor instead. func (*ReqPutChessInBag) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{35} + return file_Gameapi_proto_rawDescGZIP(), []int{37} } func (x *ReqPutChessInBag) GetChessId() int32 { @@ -2528,7 +2675,7 @@ type ResPutChessInBag struct { func (x *ResPutChessInBag) Reset() { *x = ResPutChessInBag{} - mi := &file_Gameapi_proto_msgTypes[36] + mi := &file_Gameapi_proto_msgTypes[38] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2540,7 +2687,7 @@ func (x *ResPutChessInBag) String() string { func (*ResPutChessInBag) ProtoMessage() {} func (x *ResPutChessInBag) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[36] + mi := &file_Gameapi_proto_msgTypes[38] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2553,7 +2700,7 @@ func (x *ResPutChessInBag) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPutChessInBag.ProtoReflect.Descriptor instead. func (*ResPutChessInBag) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{36} + return file_Gameapi_proto_rawDescGZIP(), []int{38} } func (x *ResPutChessInBag) GetCode() RES_CODE { @@ -2582,7 +2729,7 @@ type ReqTakeChessOutBag struct { func (x *ReqTakeChessOutBag) Reset() { *x = ReqTakeChessOutBag{} - mi := &file_Gameapi_proto_msgTypes[37] + mi := &file_Gameapi_proto_msgTypes[39] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2594,7 +2741,7 @@ func (x *ReqTakeChessOutBag) String() string { func (*ReqTakeChessOutBag) ProtoMessage() {} func (x *ReqTakeChessOutBag) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[37] + mi := &file_Gameapi_proto_msgTypes[39] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2607,7 +2754,7 @@ func (x *ReqTakeChessOutBag) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqTakeChessOutBag.ProtoReflect.Descriptor instead. func (*ReqTakeChessOutBag) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{37} + return file_Gameapi_proto_rawDescGZIP(), []int{39} } func (x *ReqTakeChessOutBag) GetBagId() int32 { @@ -2635,7 +2782,7 @@ type ResTakeChessOutBag struct { func (x *ResTakeChessOutBag) Reset() { *x = ResTakeChessOutBag{} - mi := &file_Gameapi_proto_msgTypes[38] + mi := &file_Gameapi_proto_msgTypes[40] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2647,7 +2794,7 @@ func (x *ResTakeChessOutBag) String() string { func (*ResTakeChessOutBag) ProtoMessage() {} func (x *ResTakeChessOutBag) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[38] + mi := &file_Gameapi_proto_msgTypes[40] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2660,7 +2807,7 @@ func (x *ResTakeChessOutBag) ProtoReflect() protoreflect.Message { // Deprecated: Use ResTakeChessOutBag.ProtoReflect.Descriptor instead. func (*ResTakeChessOutBag) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{38} + return file_Gameapi_proto_rawDescGZIP(), []int{40} } func (x *ResTakeChessOutBag) GetCode() RES_CODE { @@ -2686,7 +2833,7 @@ type ReqBuyChessBagGrid struct { func (x *ReqBuyChessBagGrid) Reset() { *x = ReqBuyChessBagGrid{} - mi := &file_Gameapi_proto_msgTypes[39] + mi := &file_Gameapi_proto_msgTypes[41] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2698,7 +2845,7 @@ func (x *ReqBuyChessBagGrid) String() string { func (*ReqBuyChessBagGrid) ProtoMessage() {} func (x *ReqBuyChessBagGrid) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[39] + mi := &file_Gameapi_proto_msgTypes[41] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2711,7 +2858,7 @@ func (x *ReqBuyChessBagGrid) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqBuyChessBagGrid.ProtoReflect.Descriptor instead. func (*ReqBuyChessBagGrid) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{39} + return file_Gameapi_proto_rawDescGZIP(), []int{41} } type ResBuyChessBagGrid struct { @@ -2725,7 +2872,7 @@ type ResBuyChessBagGrid struct { func (x *ResBuyChessBagGrid) Reset() { *x = ResBuyChessBagGrid{} - mi := &file_Gameapi_proto_msgTypes[40] + mi := &file_Gameapi_proto_msgTypes[42] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2737,7 +2884,7 @@ func (x *ResBuyChessBagGrid) String() string { func (*ResBuyChessBagGrid) ProtoMessage() {} func (x *ResBuyChessBagGrid) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[40] + mi := &file_Gameapi_proto_msgTypes[42] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2750,7 +2897,7 @@ func (x *ResBuyChessBagGrid) ProtoReflect() protoreflect.Message { // Deprecated: Use ResBuyChessBagGrid.ProtoReflect.Descriptor instead. func (*ResBuyChessBagGrid) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{40} + return file_Gameapi_proto_rawDescGZIP(), []int{42} } func (x *ResBuyChessBagGrid) GetCode() RES_CODE { @@ -2778,7 +2925,7 @@ type ReqPlayerGiftData struct { func (x *ReqPlayerGiftData) Reset() { *x = ReqPlayerGiftData{} - mi := &file_Gameapi_proto_msgTypes[41] + mi := &file_Gameapi_proto_msgTypes[43] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2790,7 +2937,7 @@ func (x *ReqPlayerGiftData) String() string { func (*ReqPlayerGiftData) ProtoMessage() {} func (x *ReqPlayerGiftData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[41] + mi := &file_Gameapi_proto_msgTypes[43] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2803,7 +2950,7 @@ func (x *ReqPlayerGiftData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayerGiftData.ProtoReflect.Descriptor instead. func (*ReqPlayerGiftData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{41} + return file_Gameapi_proto_rawDescGZIP(), []int{43} } func (x *ReqPlayerGiftData) GetDwUin() int32 { @@ -2825,7 +2972,7 @@ type ResPlayerGiftData struct { func (x *ResPlayerGiftData) Reset() { *x = ResPlayerGiftData{} - mi := &file_Gameapi_proto_msgTypes[42] + mi := &file_Gameapi_proto_msgTypes[44] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2837,7 +2984,7 @@ func (x *ResPlayerGiftData) String() string { func (*ResPlayerGiftData) ProtoMessage() {} func (x *ResPlayerGiftData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[42] + mi := &file_Gameapi_proto_msgTypes[44] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2850,7 +2997,7 @@ func (x *ResPlayerGiftData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayerGiftData.ProtoReflect.Descriptor instead. func (*ResPlayerGiftData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{42} + return file_Gameapi_proto_rawDescGZIP(), []int{44} } func (x *ResPlayerGiftData) GetDwUin() int32 { @@ -2878,7 +3025,7 @@ type UpdatePlayerGiftData struct { func (x *UpdatePlayerGiftData) Reset() { *x = UpdatePlayerGiftData{} - mi := &file_Gameapi_proto_msgTypes[43] + mi := &file_Gameapi_proto_msgTypes[45] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2890,7 +3037,7 @@ func (x *UpdatePlayerGiftData) String() string { func (*UpdatePlayerGiftData) ProtoMessage() {} func (x *UpdatePlayerGiftData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[43] + mi := &file_Gameapi_proto_msgTypes[45] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2903,7 +3050,7 @@ func (x *UpdatePlayerGiftData) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdatePlayerGiftData.ProtoReflect.Descriptor instead. func (*UpdatePlayerGiftData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{43} + return file_Gameapi_proto_rawDescGZIP(), []int{45} } func (x *UpdatePlayerGiftData) GetDwUin() int32 { @@ -2932,7 +3079,7 @@ type ReqAddGift struct { func (x *ReqAddGift) Reset() { *x = ReqAddGift{} - mi := &file_Gameapi_proto_msgTypes[44] + mi := &file_Gameapi_proto_msgTypes[46] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2944,7 +3091,7 @@ func (x *ReqAddGift) String() string { func (*ReqAddGift) ProtoMessage() {} func (x *ReqAddGift) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[44] + mi := &file_Gameapi_proto_msgTypes[46] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2957,7 +3104,7 @@ func (x *ReqAddGift) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAddGift.ProtoReflect.Descriptor instead. func (*ReqAddGift) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{44} + return file_Gameapi_proto_rawDescGZIP(), []int{46} } func (x *ReqAddGift) GetDwUin() int32 { @@ -2991,7 +3138,7 @@ type ResAddGift struct { func (x *ResAddGift) Reset() { *x = ResAddGift{} - mi := &file_Gameapi_proto_msgTypes[45] + mi := &file_Gameapi_proto_msgTypes[47] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3003,7 +3150,7 @@ func (x *ResAddGift) String() string { func (*ResAddGift) ProtoMessage() {} func (x *ResAddGift) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[45] + mi := &file_Gameapi_proto_msgTypes[47] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3016,7 +3163,7 @@ func (x *ResAddGift) ProtoReflect() protoreflect.Message { // Deprecated: Use ResAddGift.ProtoReflect.Descriptor instead. func (*ResAddGift) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{45} + return file_Gameapi_proto_rawDescGZIP(), []int{47} } func (x *ResAddGift) GetResultCode() int32 { @@ -3038,7 +3185,7 @@ type ReqUseGift struct { func (x *ReqUseGift) Reset() { *x = ReqUseGift{} - mi := &file_Gameapi_proto_msgTypes[46] + mi := &file_Gameapi_proto_msgTypes[48] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3050,7 +3197,7 @@ func (x *ReqUseGift) String() string { func (*ReqUseGift) ProtoMessage() {} func (x *ReqUseGift) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[46] + mi := &file_Gameapi_proto_msgTypes[48] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3063,7 +3210,7 @@ func (x *ReqUseGift) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqUseGift.ProtoReflect.Descriptor instead. func (*ReqUseGift) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{46} + return file_Gameapi_proto_rawDescGZIP(), []int{48} } func (x *ReqUseGift) GetDwUin() int32 { @@ -3098,7 +3245,7 @@ type ReqPlayerOrderData struct { func (x *ReqPlayerOrderData) Reset() { *x = ReqPlayerOrderData{} - mi := &file_Gameapi_proto_msgTypes[47] + mi := &file_Gameapi_proto_msgTypes[49] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3110,7 +3257,7 @@ func (x *ReqPlayerOrderData) String() string { func (*ReqPlayerOrderData) ProtoMessage() {} func (x *ReqPlayerOrderData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[47] + mi := &file_Gameapi_proto_msgTypes[49] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3123,7 +3270,7 @@ func (x *ReqPlayerOrderData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayerOrderData.ProtoReflect.Descriptor instead. func (*ReqPlayerOrderData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{47} + return file_Gameapi_proto_rawDescGZIP(), []int{49} } func (x *ReqPlayerOrderData) GetDwUin() int32 { @@ -3148,7 +3295,7 @@ type ResPlayerOrderData struct { func (x *ResPlayerOrderData) Reset() { *x = ResPlayerOrderData{} - mi := &file_Gameapi_proto_msgTypes[48] + mi := &file_Gameapi_proto_msgTypes[50] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3160,7 +3307,7 @@ func (x *ResPlayerOrderData) String() string { func (*ResPlayerOrderData) ProtoMessage() {} func (x *ResPlayerOrderData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[48] + mi := &file_Gameapi_proto_msgTypes[50] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3173,7 +3320,7 @@ func (x *ResPlayerOrderData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayerOrderData.ProtoReflect.Descriptor instead. func (*ResPlayerOrderData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{48} + return file_Gameapi_proto_rawDescGZIP(), []int{50} } func (x *ResPlayerOrderData) GetDwUin() int32 { @@ -3225,7 +3372,7 @@ type UpdatePlayerOrderData struct { func (x *UpdatePlayerOrderData) Reset() { *x = UpdatePlayerOrderData{} - mi := &file_Gameapi_proto_msgTypes[49] + mi := &file_Gameapi_proto_msgTypes[51] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3237,7 +3384,7 @@ func (x *UpdatePlayerOrderData) String() string { func (*UpdatePlayerOrderData) ProtoMessage() {} func (x *UpdatePlayerOrderData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[49] + mi := &file_Gameapi_proto_msgTypes[51] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3250,7 +3397,7 @@ func (x *UpdatePlayerOrderData) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdatePlayerOrderData.ProtoReflect.Descriptor instead. func (*UpdatePlayerOrderData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{49} + return file_Gameapi_proto_rawDescGZIP(), []int{51} } func (x *UpdatePlayerOrderData) GetDwUin() int32 { @@ -3295,7 +3442,7 @@ type NotifyDailyOrderRenew struct { func (x *NotifyDailyOrderRenew) Reset() { *x = NotifyDailyOrderRenew{} - mi := &file_Gameapi_proto_msgTypes[50] + mi := &file_Gameapi_proto_msgTypes[52] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3307,7 +3454,7 @@ func (x *NotifyDailyOrderRenew) String() string { func (*NotifyDailyOrderRenew) ProtoMessage() {} func (x *NotifyDailyOrderRenew) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[50] + mi := &file_Gameapi_proto_msgTypes[52] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3320,7 +3467,7 @@ func (x *NotifyDailyOrderRenew) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyDailyOrderRenew.ProtoReflect.Descriptor instead. func (*NotifyDailyOrderRenew) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{50} + return file_Gameapi_proto_rawDescGZIP(), []int{52} } func (x *NotifyDailyOrderRenew) GetDwUin() int32 { @@ -3364,7 +3511,7 @@ type ReqUnlockingChestID struct { func (x *ReqUnlockingChestID) Reset() { *x = ReqUnlockingChestID{} - mi := &file_Gameapi_proto_msgTypes[51] + mi := &file_Gameapi_proto_msgTypes[53] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3376,7 +3523,7 @@ func (x *ReqUnlockingChestID) String() string { func (*ReqUnlockingChestID) ProtoMessage() {} func (x *ReqUnlockingChestID) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[51] + mi := &file_Gameapi_proto_msgTypes[53] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3389,7 +3536,7 @@ func (x *ReqUnlockingChestID) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqUnlockingChestID.ProtoReflect.Descriptor instead. func (*ReqUnlockingChestID) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{51} + return file_Gameapi_proto_rawDescGZIP(), []int{53} } func (x *ReqUnlockingChestID) GetDwUin() int32 { @@ -3427,7 +3574,7 @@ type ResUnlockingChestID struct { func (x *ResUnlockingChestID) Reset() { *x = ResUnlockingChestID{} - mi := &file_Gameapi_proto_msgTypes[52] + mi := &file_Gameapi_proto_msgTypes[54] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3439,7 +3586,7 @@ func (x *ResUnlockingChestID) String() string { func (*ResUnlockingChestID) ProtoMessage() {} func (x *ResUnlockingChestID) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[52] + mi := &file_Gameapi_proto_msgTypes[54] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3452,7 +3599,7 @@ func (x *ResUnlockingChestID) ProtoReflect() protoreflect.Message { // Deprecated: Use ResUnlockingChestID.ProtoReflect.Descriptor instead. func (*ResUnlockingChestID) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{52} + return file_Gameapi_proto_rawDescGZIP(), []int{54} } func (x *ResUnlockingChestID) GetDwUin() int32 { @@ -3497,7 +3644,7 @@ type NotifyInitUnlockingChestID struct { func (x *NotifyInitUnlockingChestID) Reset() { *x = NotifyInitUnlockingChestID{} - mi := &file_Gameapi_proto_msgTypes[53] + mi := &file_Gameapi_proto_msgTypes[55] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3509,7 +3656,7 @@ func (x *NotifyInitUnlockingChestID) String() string { func (*NotifyInitUnlockingChestID) ProtoMessage() {} func (x *NotifyInitUnlockingChestID) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[53] + mi := &file_Gameapi_proto_msgTypes[55] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3522,7 +3669,7 @@ func (x *NotifyInitUnlockingChestID) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyInitUnlockingChestID.ProtoReflect.Descriptor instead. func (*NotifyInitUnlockingChestID) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{53} + return file_Gameapi_proto_rawDescGZIP(), []int{55} } func (x *NotifyInitUnlockingChestID) GetDwUin() int32 { @@ -3567,7 +3714,7 @@ type NotifyUnlockingChestData struct { func (x *NotifyUnlockingChestData) Reset() { *x = NotifyUnlockingChestData{} - mi := &file_Gameapi_proto_msgTypes[54] + mi := &file_Gameapi_proto_msgTypes[56] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3579,7 +3726,7 @@ func (x *NotifyUnlockingChestData) String() string { func (*NotifyUnlockingChestData) ProtoMessage() {} func (x *NotifyUnlockingChestData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[54] + mi := &file_Gameapi_proto_msgTypes[56] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3592,7 +3739,7 @@ func (x *NotifyUnlockingChestData) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyUnlockingChestData.ProtoReflect.Descriptor instead. func (*NotifyUnlockingChestData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{54} + return file_Gameapi_proto_rawDescGZIP(), []int{56} } func (x *NotifyUnlockingChestData) GetDwUin() int32 { @@ -3635,7 +3782,7 @@ type ReqChestUnlockCD struct { func (x *ReqChestUnlockCD) Reset() { *x = ReqChestUnlockCD{} - mi := &file_Gameapi_proto_msgTypes[55] + mi := &file_Gameapi_proto_msgTypes[57] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3647,7 +3794,7 @@ func (x *ReqChestUnlockCD) String() string { func (*ReqChestUnlockCD) ProtoMessage() {} func (x *ReqChestUnlockCD) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[55] + mi := &file_Gameapi_proto_msgTypes[57] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3660,7 +3807,7 @@ func (x *ReqChestUnlockCD) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqChestUnlockCD.ProtoReflect.Descriptor instead. func (*ReqChestUnlockCD) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{55} + return file_Gameapi_proto_rawDescGZIP(), []int{57} } func (x *ReqChestUnlockCD) GetDwUin() int32 { @@ -3698,7 +3845,7 @@ type ResChestUnlockCD struct { func (x *ResChestUnlockCD) Reset() { *x = ResChestUnlockCD{} - mi := &file_Gameapi_proto_msgTypes[56] + mi := &file_Gameapi_proto_msgTypes[58] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3710,7 +3857,7 @@ func (x *ResChestUnlockCD) String() string { func (*ResChestUnlockCD) ProtoMessage() {} func (x *ResChestUnlockCD) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[56] + mi := &file_Gameapi_proto_msgTypes[58] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3723,7 +3870,7 @@ func (x *ResChestUnlockCD) ProtoReflect() protoreflect.Message { // Deprecated: Use ResChestUnlockCD.ProtoReflect.Descriptor instead. func (*ResChestUnlockCD) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{56} + return file_Gameapi_proto_rawDescGZIP(), []int{58} } func (x *ResChestUnlockCD) GetDwUin() int32 { @@ -3774,7 +3921,7 @@ type ReqChessColorData struct { func (x *ReqChessColorData) Reset() { *x = ReqChessColorData{} - mi := &file_Gameapi_proto_msgTypes[57] + mi := &file_Gameapi_proto_msgTypes[59] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3786,7 +3933,7 @@ func (x *ReqChessColorData) String() string { func (*ReqChessColorData) ProtoMessage() {} func (x *ReqChessColorData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[57] + mi := &file_Gameapi_proto_msgTypes[59] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3799,7 +3946,7 @@ func (x *ReqChessColorData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqChessColorData.ProtoReflect.Descriptor instead. func (*ReqChessColorData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{57} + return file_Gameapi_proto_rawDescGZIP(), []int{59} } func (x *ReqChessColorData) GetDwUin() int32 { @@ -3819,7 +3966,7 @@ type ResChessColorData struct { func (x *ResChessColorData) Reset() { *x = ResChessColorData{} - mi := &file_Gameapi_proto_msgTypes[58] + mi := &file_Gameapi_proto_msgTypes[60] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3831,7 +3978,7 @@ func (x *ResChessColorData) String() string { func (*ResChessColorData) ProtoMessage() {} func (x *ResChessColorData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[58] + mi := &file_Gameapi_proto_msgTypes[60] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3844,7 +3991,7 @@ func (x *ResChessColorData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResChessColorData.ProtoReflect.Descriptor instead. func (*ResChessColorData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{58} + return file_Gameapi_proto_rawDescGZIP(), []int{60} } func (x *ResChessColorData) GetMChessColorData() map[string]int32 { @@ -3864,7 +4011,7 @@ type UpdateChessColorData struct { func (x *UpdateChessColorData) Reset() { *x = UpdateChessColorData{} - mi := &file_Gameapi_proto_msgTypes[59] + mi := &file_Gameapi_proto_msgTypes[61] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3876,7 +4023,7 @@ func (x *UpdateChessColorData) String() string { func (*UpdateChessColorData) ProtoMessage() {} func (x *UpdateChessColorData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[59] + mi := &file_Gameapi_proto_msgTypes[61] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3889,7 +4036,7 @@ func (x *UpdateChessColorData) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateChessColorData.ProtoReflect.Descriptor instead. func (*UpdateChessColorData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{59} + return file_Gameapi_proto_rawDescGZIP(), []int{61} } func (x *UpdateChessColorData) GetMChessColorData() map[string]int32 { @@ -3910,7 +4057,7 @@ type ReqEmitMergeMap struct { func (x *ReqEmitMergeMap) Reset() { *x = ReqEmitMergeMap{} - mi := &file_Gameapi_proto_msgTypes[60] + mi := &file_Gameapi_proto_msgTypes[62] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3922,7 +4069,7 @@ func (x *ReqEmitMergeMap) String() string { func (*ReqEmitMergeMap) ProtoMessage() {} func (x *ReqEmitMergeMap) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[60] + mi := &file_Gameapi_proto_msgTypes[62] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3935,7 +4082,7 @@ func (x *ReqEmitMergeMap) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqEmitMergeMap.ProtoReflect.Descriptor instead. func (*ReqEmitMergeMap) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{60} + return file_Gameapi_proto_rawDescGZIP(), []int{62} } func (x *ReqEmitMergeMap) GetDwUin() int32 { @@ -3955,7 +4102,7 @@ type ResEmitMergeMap struct { func (x *ResEmitMergeMap) Reset() { *x = ResEmitMergeMap{} - mi := &file_Gameapi_proto_msgTypes[61] + mi := &file_Gameapi_proto_msgTypes[63] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3967,7 +4114,7 @@ func (x *ResEmitMergeMap) String() string { func (*ResEmitMergeMap) ProtoMessage() {} func (x *ResEmitMergeMap) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[61] + mi := &file_Gameapi_proto_msgTypes[63] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3980,7 +4127,7 @@ func (x *ResEmitMergeMap) ProtoReflect() protoreflect.Message { // Deprecated: Use ResEmitMergeMap.ProtoReflect.Descriptor instead. func (*ResEmitMergeMap) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{61} + return file_Gameapi_proto_rawDescGZIP(), []int{63} } func (x *ResEmitMergeMap) GetMEmitMergeData() map[int32]int32 { @@ -4000,7 +4147,7 @@ type UpdateEmitMergeMap struct { func (x *UpdateEmitMergeMap) Reset() { *x = UpdateEmitMergeMap{} - mi := &file_Gameapi_proto_msgTypes[62] + mi := &file_Gameapi_proto_msgTypes[64] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4012,7 +4159,7 @@ func (x *UpdateEmitMergeMap) String() string { func (*UpdateEmitMergeMap) ProtoMessage() {} func (x *UpdateEmitMergeMap) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[62] + mi := &file_Gameapi_proto_msgTypes[64] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4025,7 +4172,7 @@ func (x *UpdateEmitMergeMap) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateEmitMergeMap.ProtoReflect.Descriptor instead. func (*UpdateEmitMergeMap) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{62} + return file_Gameapi_proto_rawDescGZIP(), []int{64} } func (x *UpdateEmitMergeMap) GetMEmitMergeData() map[int32]int32 { @@ -4046,7 +4193,7 @@ type ReqEmitCountMap struct { func (x *ReqEmitCountMap) Reset() { *x = ReqEmitCountMap{} - mi := &file_Gameapi_proto_msgTypes[63] + mi := &file_Gameapi_proto_msgTypes[65] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4058,7 +4205,7 @@ func (x *ReqEmitCountMap) String() string { func (*ReqEmitCountMap) ProtoMessage() {} func (x *ReqEmitCountMap) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[63] + mi := &file_Gameapi_proto_msgTypes[65] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4071,7 +4218,7 @@ func (x *ReqEmitCountMap) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqEmitCountMap.ProtoReflect.Descriptor instead. func (*ReqEmitCountMap) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{63} + return file_Gameapi_proto_rawDescGZIP(), []int{65} } func (x *ReqEmitCountMap) GetDwUin() int32 { @@ -4091,7 +4238,7 @@ type ResEmitCountMap struct { func (x *ResEmitCountMap) Reset() { *x = ResEmitCountMap{} - mi := &file_Gameapi_proto_msgTypes[64] + mi := &file_Gameapi_proto_msgTypes[66] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4103,7 +4250,7 @@ func (x *ResEmitCountMap) String() string { func (*ResEmitCountMap) ProtoMessage() {} func (x *ResEmitCountMap) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[64] + mi := &file_Gameapi_proto_msgTypes[66] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4116,7 +4263,7 @@ func (x *ResEmitCountMap) ProtoReflect() protoreflect.Message { // Deprecated: Use ResEmitCountMap.ProtoReflect.Descriptor instead. func (*ResEmitCountMap) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{64} + return file_Gameapi_proto_rawDescGZIP(), []int{66} } func (x *ResEmitCountMap) GetMEmitCountData() map[int32]int32 { @@ -4136,7 +4283,7 @@ type UpdateEmitCountMap struct { func (x *UpdateEmitCountMap) Reset() { *x = UpdateEmitCountMap{} - mi := &file_Gameapi_proto_msgTypes[65] + mi := &file_Gameapi_proto_msgTypes[67] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4148,7 +4295,7 @@ func (x *UpdateEmitCountMap) String() string { func (*UpdateEmitCountMap) ProtoMessage() {} func (x *UpdateEmitCountMap) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[65] + mi := &file_Gameapi_proto_msgTypes[67] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4161,7 +4308,7 @@ func (x *UpdateEmitCountMap) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateEmitCountMap.ProtoReflect.Descriptor instead. func (*UpdateEmitCountMap) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{65} + return file_Gameapi_proto_rawDescGZIP(), []int{67} } func (x *UpdateEmitCountMap) GetMEmitCountData() map[int32]int32 { @@ -4183,7 +4330,7 @@ type ReqEmitCDStartData struct { func (x *ReqEmitCDStartData) Reset() { *x = ReqEmitCDStartData{} - mi := &file_Gameapi_proto_msgTypes[66] + mi := &file_Gameapi_proto_msgTypes[68] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4195,7 +4342,7 @@ func (x *ReqEmitCDStartData) String() string { func (*ReqEmitCDStartData) ProtoMessage() {} func (x *ReqEmitCDStartData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[66] + mi := &file_Gameapi_proto_msgTypes[68] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4208,7 +4355,7 @@ func (x *ReqEmitCDStartData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqEmitCDStartData.ProtoReflect.Descriptor instead. func (*ReqEmitCDStartData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{66} + return file_Gameapi_proto_rawDescGZIP(), []int{68} } func (x *ReqEmitCDStartData) GetDwUin() int32 { @@ -4235,7 +4382,7 @@ type ResEmitCDStartData struct { func (x *ResEmitCDStartData) Reset() { *x = ResEmitCDStartData{} - mi := &file_Gameapi_proto_msgTypes[67] + mi := &file_Gameapi_proto_msgTypes[69] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4247,7 +4394,7 @@ func (x *ResEmitCDStartData) String() string { func (*ResEmitCDStartData) ProtoMessage() {} func (x *ResEmitCDStartData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[67] + mi := &file_Gameapi_proto_msgTypes[69] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4260,7 +4407,7 @@ func (x *ResEmitCDStartData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResEmitCDStartData.ProtoReflect.Descriptor instead. func (*ResEmitCDStartData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{67} + return file_Gameapi_proto_rawDescGZIP(), []int{69} } func (x *ResEmitCDStartData) GetMEmitCDData() map[int32]int32 { @@ -4281,7 +4428,7 @@ type NotifyInitEmitCDTimeData struct { func (x *NotifyInitEmitCDTimeData) Reset() { *x = NotifyInitEmitCDTimeData{} - mi := &file_Gameapi_proto_msgTypes[68] + mi := &file_Gameapi_proto_msgTypes[70] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4293,7 +4440,7 @@ func (x *NotifyInitEmitCDTimeData) String() string { func (*NotifyInitEmitCDTimeData) ProtoMessage() {} func (x *NotifyInitEmitCDTimeData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[68] + mi := &file_Gameapi_proto_msgTypes[70] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4306,7 +4453,7 @@ func (x *NotifyInitEmitCDTimeData) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyInitEmitCDTimeData.ProtoReflect.Descriptor instead. func (*NotifyInitEmitCDTimeData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{68} + return file_Gameapi_proto_rawDescGZIP(), []int{70} } func (x *NotifyInitEmitCDTimeData) GetMEmitCDData() map[int32]int32 { @@ -4327,7 +4474,7 @@ type NotifyEmitCDTimeEndData struct { func (x *NotifyEmitCDTimeEndData) Reset() { *x = NotifyEmitCDTimeEndData{} - mi := &file_Gameapi_proto_msgTypes[69] + mi := &file_Gameapi_proto_msgTypes[71] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4339,7 +4486,7 @@ func (x *NotifyEmitCDTimeEndData) String() string { func (*NotifyEmitCDTimeEndData) ProtoMessage() {} func (x *NotifyEmitCDTimeEndData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[69] + mi := &file_Gameapi_proto_msgTypes[71] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4352,7 +4499,7 @@ func (x *NotifyEmitCDTimeEndData) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyEmitCDTimeEndData.ProtoReflect.Descriptor instead. func (*NotifyEmitCDTimeEndData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{69} + return file_Gameapi_proto_rawDescGZIP(), []int{71} } func (x *NotifyEmitCDTimeEndData) GetMEmitCDData() map[int32]int32 { @@ -4374,7 +4521,7 @@ type ReqEmitSubCD struct { func (x *ReqEmitSubCD) Reset() { *x = ReqEmitSubCD{} - mi := &file_Gameapi_proto_msgTypes[70] + mi := &file_Gameapi_proto_msgTypes[72] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4386,7 +4533,7 @@ func (x *ReqEmitSubCD) String() string { func (*ReqEmitSubCD) ProtoMessage() {} func (x *ReqEmitSubCD) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[70] + mi := &file_Gameapi_proto_msgTypes[72] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4399,7 +4546,7 @@ func (x *ReqEmitSubCD) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqEmitSubCD.ProtoReflect.Descriptor instead. func (*ReqEmitSubCD) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{70} + return file_Gameapi_proto_rawDescGZIP(), []int{72} } func (x *ReqEmitSubCD) GetDwUin() int32 { @@ -4435,7 +4582,7 @@ type ReqDecorateData struct { func (x *ReqDecorateData) Reset() { *x = ReqDecorateData{} - mi := &file_Gameapi_proto_msgTypes[71] + mi := &file_Gameapi_proto_msgTypes[73] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4447,7 +4594,7 @@ func (x *ReqDecorateData) String() string { func (*ReqDecorateData) ProtoMessage() {} func (x *ReqDecorateData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[71] + mi := &file_Gameapi_proto_msgTypes[73] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4460,7 +4607,7 @@ func (x *ReqDecorateData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqDecorateData.ProtoReflect.Descriptor instead. func (*ReqDecorateData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{71} + return file_Gameapi_proto_rawDescGZIP(), []int{73} } func (x *ReqDecorateData) GetDwUin() int32 { @@ -4481,7 +4628,7 @@ type ResDecorateData struct { func (x *ResDecorateData) Reset() { *x = ResDecorateData{} - mi := &file_Gameapi_proto_msgTypes[72] + mi := &file_Gameapi_proto_msgTypes[74] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4493,7 +4640,7 @@ func (x *ResDecorateData) String() string { func (*ResDecorateData) ProtoMessage() {} func (x *ResDecorateData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[72] + mi := &file_Gameapi_proto_msgTypes[74] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4506,7 +4653,7 @@ func (x *ResDecorateData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResDecorateData.ProtoReflect.Descriptor instead. func (*ResDecorateData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{72} + return file_Gameapi_proto_rawDescGZIP(), []int{74} } func (x *ResDecorateData) GetMDecorateData() map[string]int32 { @@ -4535,7 +4682,7 @@ type UpdateDecorateData struct { func (x *UpdateDecorateData) Reset() { *x = UpdateDecorateData{} - mi := &file_Gameapi_proto_msgTypes[73] + mi := &file_Gameapi_proto_msgTypes[75] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4547,7 +4694,7 @@ func (x *UpdateDecorateData) String() string { func (*UpdateDecorateData) ProtoMessage() {} func (x *UpdateDecorateData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[73] + mi := &file_Gameapi_proto_msgTypes[75] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4560,7 +4707,7 @@ func (x *UpdateDecorateData) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateDecorateData.ProtoReflect.Descriptor instead. func (*UpdateDecorateData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{73} + return file_Gameapi_proto_rawDescGZIP(), []int{75} } func (x *UpdateDecorateData) GetMDecorateData() map[string]int32 { @@ -4589,7 +4736,7 @@ type ReqShopData struct { func (x *ReqShopData) Reset() { *x = ReqShopData{} - mi := &file_Gameapi_proto_msgTypes[74] + mi := &file_Gameapi_proto_msgTypes[76] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4601,7 +4748,7 @@ func (x *ReqShopData) String() string { func (*ReqShopData) ProtoMessage() {} func (x *ReqShopData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[74] + mi := &file_Gameapi_proto_msgTypes[76] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4614,7 +4761,7 @@ func (x *ReqShopData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqShopData.ProtoReflect.Descriptor instead. func (*ReqShopData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{74} + return file_Gameapi_proto_rawDescGZIP(), []int{76} } func (x *ReqShopData) GetDwUin() int32 { @@ -4644,7 +4791,7 @@ type ResShopData struct { func (x *ResShopData) Reset() { *x = ResShopData{} - mi := &file_Gameapi_proto_msgTypes[75] + mi := &file_Gameapi_proto_msgTypes[77] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4656,7 +4803,7 @@ func (x *ResShopData) String() string { func (*ResShopData) ProtoMessage() {} func (x *ResShopData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[75] + mi := &file_Gameapi_proto_msgTypes[77] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4669,7 +4816,7 @@ func (x *ResShopData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResShopData.ProtoReflect.Descriptor instead. func (*ResShopData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{75} + return file_Gameapi_proto_rawDescGZIP(), []int{77} } func (x *ResShopData) GetMShopTimeBuyData() map[int32]int32 { @@ -4755,7 +4902,7 @@ type NotifyShopStatusChange struct { func (x *NotifyShopStatusChange) Reset() { *x = NotifyShopStatusChange{} - mi := &file_Gameapi_proto_msgTypes[76] + mi := &file_Gameapi_proto_msgTypes[78] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4767,7 +4914,7 @@ func (x *NotifyShopStatusChange) String() string { func (*NotifyShopStatusChange) ProtoMessage() {} func (x *NotifyShopStatusChange) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[76] + mi := &file_Gameapi_proto_msgTypes[78] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4780,7 +4927,7 @@ func (x *NotifyShopStatusChange) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyShopStatusChange.ProtoReflect.Descriptor instead. func (*NotifyShopStatusChange) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{76} + return file_Gameapi_proto_rawDescGZIP(), []int{78} } func (x *NotifyShopStatusChange) GetType() int32 { @@ -4816,7 +4963,7 @@ type ReqShopBuy struct { func (x *ReqShopBuy) Reset() { *x = ReqShopBuy{} - mi := &file_Gameapi_proto_msgTypes[77] + mi := &file_Gameapi_proto_msgTypes[79] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4828,7 +4975,7 @@ func (x *ReqShopBuy) String() string { func (*ReqShopBuy) ProtoMessage() {} func (x *ReqShopBuy) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[77] + mi := &file_Gameapi_proto_msgTypes[79] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4841,7 +4988,7 @@ func (x *ReqShopBuy) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqShopBuy.ProtoReflect.Descriptor instead. func (*ReqShopBuy) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{77} + return file_Gameapi_proto_rawDescGZIP(), []int{79} } func (x *ReqShopBuy) GetType() int32 { @@ -4878,7 +5025,7 @@ type ResShopBuy struct { func (x *ResShopBuy) Reset() { *x = ResShopBuy{} - mi := &file_Gameapi_proto_msgTypes[78] + mi := &file_Gameapi_proto_msgTypes[80] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4890,7 +5037,7 @@ func (x *ResShopBuy) String() string { func (*ResShopBuy) ProtoMessage() {} func (x *ResShopBuy) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[78] + mi := &file_Gameapi_proto_msgTypes[80] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4903,7 +5050,7 @@ func (x *ResShopBuy) ProtoReflect() protoreflect.Message { // Deprecated: Use ResShopBuy.ProtoReflect.Descriptor instead. func (*ResShopBuy) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{78} + return file_Gameapi_proto_rawDescGZIP(), []int{80} } func (x *ResShopBuy) GetType() int32 { @@ -4945,7 +5092,7 @@ type ReqRenewItemBuyCnt struct { func (x *ReqRenewItemBuyCnt) Reset() { *x = ReqRenewItemBuyCnt{} - mi := &file_Gameapi_proto_msgTypes[79] + mi := &file_Gameapi_proto_msgTypes[81] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4957,7 +5104,7 @@ func (x *ReqRenewItemBuyCnt) String() string { func (*ReqRenewItemBuyCnt) ProtoMessage() {} func (x *ReqRenewItemBuyCnt) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[79] + mi := &file_Gameapi_proto_msgTypes[81] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4970,7 +5117,7 @@ func (x *ReqRenewItemBuyCnt) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqRenewItemBuyCnt.ProtoReflect.Descriptor instead. func (*ReqRenewItemBuyCnt) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{79} + return file_Gameapi_proto_rawDescGZIP(), []int{81} } func (x *ReqRenewItemBuyCnt) GetType() int32 { @@ -4998,7 +5145,7 @@ type ResRenewItemBuyCnt struct { func (x *ResRenewItemBuyCnt) Reset() { *x = ResRenewItemBuyCnt{} - mi := &file_Gameapi_proto_msgTypes[80] + mi := &file_Gameapi_proto_msgTypes[82] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5010,7 +5157,7 @@ func (x *ResRenewItemBuyCnt) String() string { func (*ResRenewItemBuyCnt) ProtoMessage() {} func (x *ResRenewItemBuyCnt) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[80] + mi := &file_Gameapi_proto_msgTypes[82] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5023,7 +5170,7 @@ func (x *ResRenewItemBuyCnt) ProtoReflect() protoreflect.Message { // Deprecated: Use ResRenewItemBuyCnt.ProtoReflect.Descriptor instead. func (*ResRenewItemBuyCnt) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{80} + return file_Gameapi_proto_rawDescGZIP(), []int{82} } func (x *ResRenewItemBuyCnt) GetType() int32 { @@ -5051,7 +5198,7 @@ type ReqPlayerAdPack struct { func (x *ReqPlayerAdPack) Reset() { *x = ReqPlayerAdPack{} - mi := &file_Gameapi_proto_msgTypes[81] + mi := &file_Gameapi_proto_msgTypes[83] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5063,7 +5210,7 @@ func (x *ReqPlayerAdPack) String() string { func (*ReqPlayerAdPack) ProtoMessage() {} func (x *ReqPlayerAdPack) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[81] + mi := &file_Gameapi_proto_msgTypes[83] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5076,7 +5223,7 @@ func (x *ReqPlayerAdPack) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayerAdPack.ProtoReflect.Descriptor instead. func (*ReqPlayerAdPack) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{81} + return file_Gameapi_proto_rawDescGZIP(), []int{83} } func (x *ReqPlayerAdPack) GetDwUin() int32 { @@ -5100,7 +5247,7 @@ type ResPlayerAdPack struct { func (x *ResPlayerAdPack) Reset() { *x = ResPlayerAdPack{} - mi := &file_Gameapi_proto_msgTypes[82] + mi := &file_Gameapi_proto_msgTypes[84] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5112,7 +5259,7 @@ func (x *ResPlayerAdPack) String() string { func (*ResPlayerAdPack) ProtoMessage() {} func (x *ResPlayerAdPack) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[82] + mi := &file_Gameapi_proto_msgTypes[84] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5125,7 +5272,7 @@ func (x *ResPlayerAdPack) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayerAdPack.ProtoReflect.Descriptor instead. func (*ResPlayerAdPack) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{82} + return file_Gameapi_proto_rawDescGZIP(), []int{84} } func (x *ResPlayerAdPack) GetItemDatas() []string { @@ -5173,7 +5320,7 @@ type ReqWatchAd struct { func (x *ReqWatchAd) Reset() { *x = ReqWatchAd{} - mi := &file_Gameapi_proto_msgTypes[83] + mi := &file_Gameapi_proto_msgTypes[85] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5185,7 +5332,7 @@ func (x *ReqWatchAd) String() string { func (*ReqWatchAd) ProtoMessage() {} func (x *ReqWatchAd) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[83] + mi := &file_Gameapi_proto_msgTypes[85] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5198,7 +5345,7 @@ func (x *ReqWatchAd) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqWatchAd.ProtoReflect.Descriptor instead. func (*ReqWatchAd) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{83} + return file_Gameapi_proto_rawDescGZIP(), []int{85} } func (x *ReqWatchAd) GetIndex() int32 { @@ -5220,7 +5367,7 @@ type ResWatchAd struct { func (x *ResWatchAd) Reset() { *x = ResWatchAd{} - mi := &file_Gameapi_proto_msgTypes[84] + mi := &file_Gameapi_proto_msgTypes[86] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5232,7 +5379,7 @@ func (x *ResWatchAd) String() string { func (*ResWatchAd) ProtoMessage() {} func (x *ResWatchAd) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[84] + mi := &file_Gameapi_proto_msgTypes[86] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5245,7 +5392,7 @@ func (x *ResWatchAd) ProtoReflect() protoreflect.Message { // Deprecated: Use ResWatchAd.ProtoReflect.Descriptor instead. func (*ResWatchAd) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{84} + return file_Gameapi_proto_rawDescGZIP(), []int{86} } func (x *ResWatchAd) GetResultCode() int32 { @@ -5288,7 +5435,7 @@ type BriefEmailStruct struct { func (x *BriefEmailStruct) Reset() { *x = BriefEmailStruct{} - mi := &file_Gameapi_proto_msgTypes[85] + mi := &file_Gameapi_proto_msgTypes[87] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5300,7 +5447,7 @@ func (x *BriefEmailStruct) String() string { func (*BriefEmailStruct) ProtoMessage() {} func (x *BriefEmailStruct) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[85] + mi := &file_Gameapi_proto_msgTypes[87] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5313,7 +5460,7 @@ func (x *BriefEmailStruct) ProtoReflect() protoreflect.Message { // Deprecated: Use BriefEmailStruct.ProtoReflect.Descriptor instead. func (*BriefEmailStruct) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{85} + return file_Gameapi_proto_rawDescGZIP(), []int{87} } func (x *BriefEmailStruct) GetEmailId() int32 { @@ -5396,7 +5543,7 @@ type ReqBriefEmailData struct { func (x *ReqBriefEmailData) Reset() { *x = ReqBriefEmailData{} - mi := &file_Gameapi_proto_msgTypes[86] + mi := &file_Gameapi_proto_msgTypes[88] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5408,7 +5555,7 @@ func (x *ReqBriefEmailData) String() string { func (*ReqBriefEmailData) ProtoMessage() {} func (x *ReqBriefEmailData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[86] + mi := &file_Gameapi_proto_msgTypes[88] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5421,7 +5568,7 @@ func (x *ReqBriefEmailData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqBriefEmailData.ProtoReflect.Descriptor instead. func (*ReqBriefEmailData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{86} + return file_Gameapi_proto_rawDescGZIP(), []int{88} } func (x *ReqBriefEmailData) GetDwUin() int32 { @@ -5442,7 +5589,7 @@ type ResBriefEmailData struct { func (x *ResBriefEmailData) Reset() { *x = ResBriefEmailData{} - mi := &file_Gameapi_proto_msgTypes[87] + mi := &file_Gameapi_proto_msgTypes[89] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5454,7 +5601,7 @@ func (x *ResBriefEmailData) String() string { func (*ResBriefEmailData) ProtoMessage() {} func (x *ResBriefEmailData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[87] + mi := &file_Gameapi_proto_msgTypes[89] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5467,7 +5614,7 @@ func (x *ResBriefEmailData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResBriefEmailData.ProtoReflect.Descriptor instead. func (*ResBriefEmailData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{87} + return file_Gameapi_proto_rawDescGZIP(), []int{89} } func (x *ResBriefEmailData) GetDwUin() int32 { @@ -5495,7 +5642,7 @@ type NotifyNewBriefEmailData struct { func (x *NotifyNewBriefEmailData) Reset() { *x = NotifyNewBriefEmailData{} - mi := &file_Gameapi_proto_msgTypes[88] + mi := &file_Gameapi_proto_msgTypes[90] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5507,7 +5654,7 @@ func (x *NotifyNewBriefEmailData) String() string { func (*NotifyNewBriefEmailData) ProtoMessage() {} func (x *NotifyNewBriefEmailData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[88] + mi := &file_Gameapi_proto_msgTypes[90] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5520,7 +5667,7 @@ func (x *NotifyNewBriefEmailData) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyNewBriefEmailData.ProtoReflect.Descriptor instead. func (*NotifyNewBriefEmailData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{88} + return file_Gameapi_proto_rawDescGZIP(), []int{90} } func (x *NotifyNewBriefEmailData) GetDwUin() int32 { @@ -5547,7 +5694,7 @@ type ReqDetailEmailData struct { func (x *ReqDetailEmailData) Reset() { *x = ReqDetailEmailData{} - mi := &file_Gameapi_proto_msgTypes[89] + mi := &file_Gameapi_proto_msgTypes[91] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5559,7 +5706,7 @@ func (x *ReqDetailEmailData) String() string { func (*ReqDetailEmailData) ProtoMessage() {} func (x *ReqDetailEmailData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[89] + mi := &file_Gameapi_proto_msgTypes[91] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5572,7 +5719,7 @@ func (x *ReqDetailEmailData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqDetailEmailData.ProtoReflect.Descriptor instead. func (*ReqDetailEmailData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{89} + return file_Gameapi_proto_rawDescGZIP(), []int{91} } func (x *ReqDetailEmailData) GetEmailId() int32 { @@ -5598,7 +5745,7 @@ type ResDetailEmailData struct { func (x *ResDetailEmailData) Reset() { *x = ResDetailEmailData{} - mi := &file_Gameapi_proto_msgTypes[90] + mi := &file_Gameapi_proto_msgTypes[92] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5610,7 +5757,7 @@ func (x *ResDetailEmailData) String() string { func (*ResDetailEmailData) ProtoMessage() {} func (x *ResDetailEmailData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[90] + mi := &file_Gameapi_proto_msgTypes[92] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5623,7 +5770,7 @@ func (x *ResDetailEmailData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResDetailEmailData.ProtoReflect.Descriptor instead. func (*ResDetailEmailData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{90} + return file_Gameapi_proto_rawDescGZIP(), []int{92} } func (x *ResDetailEmailData) GetEmailId() int32 { @@ -5685,7 +5832,7 @@ type ReqGetEmailReward struct { func (x *ReqGetEmailReward) Reset() { *x = ReqGetEmailReward{} - mi := &file_Gameapi_proto_msgTypes[91] + mi := &file_Gameapi_proto_msgTypes[93] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5697,7 +5844,7 @@ func (x *ReqGetEmailReward) String() string { func (*ReqGetEmailReward) ProtoMessage() {} func (x *ReqGetEmailReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[91] + mi := &file_Gameapi_proto_msgTypes[93] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5710,7 +5857,7 @@ func (x *ReqGetEmailReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGetEmailReward.ProtoReflect.Descriptor instead. func (*ReqGetEmailReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{91} + return file_Gameapi_proto_rawDescGZIP(), []int{93} } func (x *ReqGetEmailReward) GetEmailId() int32 { @@ -5734,7 +5881,7 @@ type ResGetEmailReward struct { func (x *ResGetEmailReward) Reset() { *x = ResGetEmailReward{} - mi := &file_Gameapi_proto_msgTypes[92] + mi := &file_Gameapi_proto_msgTypes[94] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5746,7 +5893,7 @@ func (x *ResGetEmailReward) String() string { func (*ResGetEmailReward) ProtoMessage() {} func (x *ResGetEmailReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[92] + mi := &file_Gameapi_proto_msgTypes[94] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5759,7 +5906,7 @@ func (x *ResGetEmailReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGetEmailReward.ProtoReflect.Descriptor instead. func (*ResGetEmailReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{92} + return file_Gameapi_proto_rawDescGZIP(), []int{94} } func (x *ResGetEmailReward) GetEmailId() int32 { @@ -5807,7 +5954,7 @@ type ReqDeleteEmail struct { func (x *ReqDeleteEmail) Reset() { *x = ReqDeleteEmail{} - mi := &file_Gameapi_proto_msgTypes[93] + mi := &file_Gameapi_proto_msgTypes[95] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5819,7 +5966,7 @@ func (x *ReqDeleteEmail) String() string { func (*ReqDeleteEmail) ProtoMessage() {} func (x *ReqDeleteEmail) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[93] + mi := &file_Gameapi_proto_msgTypes[95] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5832,7 +5979,7 @@ func (x *ReqDeleteEmail) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqDeleteEmail.ProtoReflect.Descriptor instead. func (*ReqDeleteEmail) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{93} + return file_Gameapi_proto_rawDescGZIP(), []int{95} } func (x *ReqDeleteEmail) GetEmailId() int32 { @@ -5853,7 +6000,7 @@ type ResDeleteEmail struct { func (x *ResDeleteEmail) Reset() { *x = ResDeleteEmail{} - mi := &file_Gameapi_proto_msgTypes[94] + mi := &file_Gameapi_proto_msgTypes[96] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5865,7 +6012,7 @@ func (x *ResDeleteEmail) String() string { func (*ResDeleteEmail) ProtoMessage() {} func (x *ResDeleteEmail) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[94] + mi := &file_Gameapi_proto_msgTypes[96] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5878,7 +6025,7 @@ func (x *ResDeleteEmail) ProtoReflect() protoreflect.Message { // Deprecated: Use ResDeleteEmail.ProtoReflect.Descriptor instead. func (*ResDeleteEmail) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{94} + return file_Gameapi_proto_rawDescGZIP(), []int{96} } func (x *ResDeleteEmail) GetEmailId() int32 { @@ -5910,7 +6057,7 @@ type LimitedTimeActiveStruct struct { func (x *LimitedTimeActiveStruct) Reset() { *x = LimitedTimeActiveStruct{} - mi := &file_Gameapi_proto_msgTypes[95] + mi := &file_Gameapi_proto_msgTypes[97] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5922,7 +6069,7 @@ func (x *LimitedTimeActiveStruct) String() string { func (*LimitedTimeActiveStruct) ProtoMessage() {} func (x *LimitedTimeActiveStruct) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[95] + mi := &file_Gameapi_proto_msgTypes[97] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5935,7 +6082,7 @@ func (x *LimitedTimeActiveStruct) ProtoReflect() protoreflect.Message { // Deprecated: Use LimitedTimeActiveStruct.ProtoReflect.Descriptor instead. func (*LimitedTimeActiveStruct) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{95} + return file_Gameapi_proto_rawDescGZIP(), []int{97} } func (x *LimitedTimeActiveStruct) GetType() int32 { @@ -5984,7 +6131,7 @@ type LimitedTimeEndStruct struct { func (x *LimitedTimeEndStruct) Reset() { *x = LimitedTimeEndStruct{} - mi := &file_Gameapi_proto_msgTypes[96] + mi := &file_Gameapi_proto_msgTypes[98] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5996,7 +6143,7 @@ func (x *LimitedTimeEndStruct) String() string { func (*LimitedTimeEndStruct) ProtoMessage() {} func (x *LimitedTimeEndStruct) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[96] + mi := &file_Gameapi_proto_msgTypes[98] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6009,7 +6156,7 @@ func (x *LimitedTimeEndStruct) ProtoReflect() protoreflect.Message { // Deprecated: Use LimitedTimeEndStruct.ProtoReflect.Descriptor instead. func (*LimitedTimeEndStruct) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{96} + return file_Gameapi_proto_rawDescGZIP(), []int{98} } func (x *LimitedTimeEndStruct) GetType() int32 { @@ -6037,7 +6184,7 @@ type NotifyLimitedTimeActiveData struct { func (x *NotifyLimitedTimeActiveData) Reset() { *x = NotifyLimitedTimeActiveData{} - mi := &file_Gameapi_proto_msgTypes[97] + mi := &file_Gameapi_proto_msgTypes[99] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6049,7 +6196,7 @@ func (x *NotifyLimitedTimeActiveData) String() string { func (*NotifyLimitedTimeActiveData) ProtoMessage() {} func (x *NotifyLimitedTimeActiveData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[97] + mi := &file_Gameapi_proto_msgTypes[99] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6062,7 +6209,7 @@ func (x *NotifyLimitedTimeActiveData) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyLimitedTimeActiveData.ProtoReflect.Descriptor instead. func (*NotifyLimitedTimeActiveData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{97} + return file_Gameapi_proto_rawDescGZIP(), []int{99} } func (x *NotifyLimitedTimeActiveData) GetDwUin() int32 { @@ -6090,7 +6237,7 @@ type NotifyLimitedTimeActiveEnd struct { func (x *NotifyLimitedTimeActiveEnd) Reset() { *x = NotifyLimitedTimeActiveEnd{} - mi := &file_Gameapi_proto_msgTypes[98] + mi := &file_Gameapi_proto_msgTypes[100] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6102,7 +6249,7 @@ func (x *NotifyLimitedTimeActiveEnd) String() string { func (*NotifyLimitedTimeActiveEnd) ProtoMessage() {} func (x *NotifyLimitedTimeActiveEnd) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[98] + mi := &file_Gameapi_proto_msgTypes[100] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6115,7 +6262,7 @@ func (x *NotifyLimitedTimeActiveEnd) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyLimitedTimeActiveEnd.ProtoReflect.Descriptor instead. func (*NotifyLimitedTimeActiveEnd) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{98} + return file_Gameapi_proto_rawDescGZIP(), []int{100} } func (x *NotifyLimitedTimeActiveEnd) GetDwUin() int32 { @@ -6143,7 +6290,7 @@ type ReqLimitPassportDetail struct { func (x *ReqLimitPassportDetail) Reset() { *x = ReqLimitPassportDetail{} - mi := &file_Gameapi_proto_msgTypes[99] + mi := &file_Gameapi_proto_msgTypes[101] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6155,7 +6302,7 @@ func (x *ReqLimitPassportDetail) String() string { func (*ReqLimitPassportDetail) ProtoMessage() {} func (x *ReqLimitPassportDetail) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[99] + mi := &file_Gameapi_proto_msgTypes[101] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6168,7 +6315,7 @@ func (x *ReqLimitPassportDetail) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqLimitPassportDetail.ProtoReflect.Descriptor instead. func (*ReqLimitPassportDetail) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{99} + return file_Gameapi_proto_rawDescGZIP(), []int{101} } func (x *ReqLimitPassportDetail) GetDwUin() int32 { @@ -6205,7 +6352,7 @@ type ResLimitPassportDetail struct { func (x *ResLimitPassportDetail) Reset() { *x = ResLimitPassportDetail{} - mi := &file_Gameapi_proto_msgTypes[100] + mi := &file_Gameapi_proto_msgTypes[102] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6217,7 +6364,7 @@ func (x *ResLimitPassportDetail) String() string { func (*ResLimitPassportDetail) ProtoMessage() {} func (x *ResLimitPassportDetail) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[100] + mi := &file_Gameapi_proto_msgTypes[102] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6230,7 +6377,7 @@ func (x *ResLimitPassportDetail) ProtoReflect() protoreflect.Message { // Deprecated: Use ResLimitPassportDetail.ProtoReflect.Descriptor instead. func (*ResLimitPassportDetail) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{100} + return file_Gameapi_proto_rawDescGZIP(), []int{102} } func (x *ResLimitPassportDetail) GetDwUin() int32 { @@ -6321,7 +6468,7 @@ type ReqActiveAddStar struct { func (x *ReqActiveAddStar) Reset() { *x = ReqActiveAddStar{} - mi := &file_Gameapi_proto_msgTypes[101] + mi := &file_Gameapi_proto_msgTypes[103] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6333,7 +6480,7 @@ func (x *ReqActiveAddStar) String() string { func (*ReqActiveAddStar) ProtoMessage() {} func (x *ReqActiveAddStar) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[101] + mi := &file_Gameapi_proto_msgTypes[103] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6346,7 +6493,7 @@ func (x *ReqActiveAddStar) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqActiveAddStar.ProtoReflect.Descriptor instead. func (*ReqActiveAddStar) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{101} + return file_Gameapi_proto_rawDescGZIP(), []int{103} } func (x *ReqActiveAddStar) GetActiveID() int32 { @@ -6375,7 +6522,7 @@ type ResActiveAddStar struct { func (x *ResActiveAddStar) Reset() { *x = ResActiveAddStar{} - mi := &file_Gameapi_proto_msgTypes[102] + mi := &file_Gameapi_proto_msgTypes[104] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6387,7 +6534,7 @@ func (x *ResActiveAddStar) String() string { func (*ResActiveAddStar) ProtoMessage() {} func (x *ResActiveAddStar) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[102] + mi := &file_Gameapi_proto_msgTypes[104] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6400,7 +6547,7 @@ func (x *ResActiveAddStar) ProtoReflect() protoreflect.Message { // Deprecated: Use ResActiveAddStar.ProtoReflect.Descriptor instead. func (*ResActiveAddStar) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{102} + return file_Gameapi_proto_rawDescGZIP(), []int{104} } func (x *ResActiveAddStar) GetActiveID() int32 { @@ -6435,7 +6582,7 @@ type ReqPayPassport struct { func (x *ReqPayPassport) Reset() { *x = ReqPayPassport{} - mi := &file_Gameapi_proto_msgTypes[103] + mi := &file_Gameapi_proto_msgTypes[105] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6447,7 +6594,7 @@ func (x *ReqPayPassport) String() string { func (*ReqPayPassport) ProtoMessage() {} func (x *ReqPayPassport) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[103] + mi := &file_Gameapi_proto_msgTypes[105] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6460,7 +6607,7 @@ func (x *ReqPayPassport) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPayPassport.ProtoReflect.Descriptor instead. func (*ReqPayPassport) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{103} + return file_Gameapi_proto_rawDescGZIP(), []int{105} } func (x *ReqPayPassport) GetDwUin() int32 { @@ -6489,7 +6636,7 @@ type ResPayPassport struct { func (x *ResPayPassport) Reset() { *x = ResPayPassport{} - mi := &file_Gameapi_proto_msgTypes[104] + mi := &file_Gameapi_proto_msgTypes[106] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6501,7 +6648,7 @@ func (x *ResPayPassport) String() string { func (*ResPayPassport) ProtoMessage() {} func (x *ResPayPassport) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[104] + mi := &file_Gameapi_proto_msgTypes[106] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6514,7 +6661,7 @@ func (x *ResPayPassport) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPayPassport.ProtoReflect.Descriptor instead. func (*ResPayPassport) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{104} + return file_Gameapi_proto_rawDescGZIP(), []int{106} } func (x *ResPayPassport) GetDwUin() int32 { @@ -6551,7 +6698,7 @@ type ReqGetLimitPassportReward struct { func (x *ReqGetLimitPassportReward) Reset() { *x = ReqGetLimitPassportReward{} - mi := &file_Gameapi_proto_msgTypes[105] + mi := &file_Gameapi_proto_msgTypes[107] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6563,7 +6710,7 @@ func (x *ReqGetLimitPassportReward) String() string { func (*ReqGetLimitPassportReward) ProtoMessage() {} func (x *ReqGetLimitPassportReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[105] + mi := &file_Gameapi_proto_msgTypes[107] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6576,7 +6723,7 @@ func (x *ReqGetLimitPassportReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGetLimitPassportReward.ProtoReflect.Descriptor instead. func (*ReqGetLimitPassportReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{105} + return file_Gameapi_proto_rawDescGZIP(), []int{107} } func (x *ReqGetLimitPassportReward) GetDwUin() int32 { @@ -6621,7 +6768,7 @@ type ResGetLimitPassportReward struct { func (x *ResGetLimitPassportReward) Reset() { *x = ResGetLimitPassportReward{} - mi := &file_Gameapi_proto_msgTypes[106] + mi := &file_Gameapi_proto_msgTypes[108] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6633,7 +6780,7 @@ func (x *ResGetLimitPassportReward) String() string { func (*ResGetLimitPassportReward) ProtoMessage() {} func (x *ResGetLimitPassportReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[106] + mi := &file_Gameapi_proto_msgTypes[108] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6646,7 +6793,7 @@ func (x *ResGetLimitPassportReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGetLimitPassportReward.ProtoReflect.Descriptor instead. func (*ResGetLimitPassportReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{106} + return file_Gameapi_proto_rawDescGZIP(), []int{108} } func (x *ResGetLimitPassportReward) GetDwUin() int32 { @@ -6695,7 +6842,7 @@ type ReqOpenNewPig struct { func (x *ReqOpenNewPig) Reset() { *x = ReqOpenNewPig{} - mi := &file_Gameapi_proto_msgTypes[107] + mi := &file_Gameapi_proto_msgTypes[109] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6707,7 +6854,7 @@ func (x *ReqOpenNewPig) String() string { func (*ReqOpenNewPig) ProtoMessage() {} func (x *ReqOpenNewPig) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[107] + mi := &file_Gameapi_proto_msgTypes[109] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6720,7 +6867,7 @@ func (x *ReqOpenNewPig) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqOpenNewPig.ProtoReflect.Descriptor instead. func (*ReqOpenNewPig) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{107} + return file_Gameapi_proto_rawDescGZIP(), []int{109} } func (x *ReqOpenNewPig) GetPigType() int32 { @@ -6744,7 +6891,7 @@ type ResOpenNewPig struct { func (x *ResOpenNewPig) Reset() { *x = ResOpenNewPig{} - mi := &file_Gameapi_proto_msgTypes[108] + mi := &file_Gameapi_proto_msgTypes[110] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6756,7 +6903,7 @@ func (x *ResOpenNewPig) String() string { func (*ResOpenNewPig) ProtoMessage() {} func (x *ResOpenNewPig) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[108] + mi := &file_Gameapi_proto_msgTypes[110] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6769,7 +6916,7 @@ func (x *ResOpenNewPig) ProtoReflect() protoreflect.Message { // Deprecated: Use ResOpenNewPig.ProtoReflect.Descriptor instead. func (*ResOpenNewPig) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{108} + return file_Gameapi_proto_rawDescGZIP(), []int{110} } func (x *ResOpenNewPig) GetPigType() int32 { @@ -6817,7 +6964,7 @@ type ReqPigDetailInfo struct { func (x *ReqPigDetailInfo) Reset() { *x = ReqPigDetailInfo{} - mi := &file_Gameapi_proto_msgTypes[109] + mi := &file_Gameapi_proto_msgTypes[111] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6829,7 +6976,7 @@ func (x *ReqPigDetailInfo) String() string { func (*ReqPigDetailInfo) ProtoMessage() {} func (x *ReqPigDetailInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[109] + mi := &file_Gameapi_proto_msgTypes[111] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6842,7 +6989,7 @@ func (x *ReqPigDetailInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPigDetailInfo.ProtoReflect.Descriptor instead. func (*ReqPigDetailInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{109} + return file_Gameapi_proto_rawDescGZIP(), []int{111} } func (x *ReqPigDetailInfo) GetPigId() int32 { @@ -6870,7 +7017,7 @@ type ResPigDetailInfo struct { func (x *ResPigDetailInfo) Reset() { *x = ResPigDetailInfo{} - mi := &file_Gameapi_proto_msgTypes[110] + mi := &file_Gameapi_proto_msgTypes[112] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6882,7 +7029,7 @@ func (x *ResPigDetailInfo) String() string { func (*ResPigDetailInfo) ProtoMessage() {} func (x *ResPigDetailInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[110] + mi := &file_Gameapi_proto_msgTypes[112] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6895,7 +7042,7 @@ func (x *ResPigDetailInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPigDetailInfo.ProtoReflect.Descriptor instead. func (*ResPigDetailInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{110} + return file_Gameapi_proto_rawDescGZIP(), []int{112} } func (x *ResPigDetailInfo) GetDwUin() int32 { @@ -6972,7 +7119,7 @@ type UpdateFinishOrderDiamond struct { func (x *UpdateFinishOrderDiamond) Reset() { *x = UpdateFinishOrderDiamond{} - mi := &file_Gameapi_proto_msgTypes[111] + mi := &file_Gameapi_proto_msgTypes[113] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6984,7 +7131,7 @@ func (x *UpdateFinishOrderDiamond) String() string { func (*UpdateFinishOrderDiamond) ProtoMessage() {} func (x *UpdateFinishOrderDiamond) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[111] + mi := &file_Gameapi_proto_msgTypes[113] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6997,7 +7144,7 @@ func (x *UpdateFinishOrderDiamond) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateFinishOrderDiamond.ProtoReflect.Descriptor instead. func (*UpdateFinishOrderDiamond) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{111} + return file_Gameapi_proto_rawDescGZIP(), []int{113} } func (x *UpdateFinishOrderDiamond) GetPigId() int32 { @@ -7025,7 +7172,7 @@ type ReqGetPigReward struct { func (x *ReqGetPigReward) Reset() { *x = ReqGetPigReward{} - mi := &file_Gameapi_proto_msgTypes[112] + mi := &file_Gameapi_proto_msgTypes[114] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7037,7 +7184,7 @@ func (x *ReqGetPigReward) String() string { func (*ReqGetPigReward) ProtoMessage() {} func (x *ReqGetPigReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[112] + mi := &file_Gameapi_proto_msgTypes[114] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7050,7 +7197,7 @@ func (x *ReqGetPigReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGetPigReward.ProtoReflect.Descriptor instead. func (*ReqGetPigReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{112} + return file_Gameapi_proto_rawDescGZIP(), []int{114} } func (x *ReqGetPigReward) GetPigId() int32 { @@ -7080,7 +7227,7 @@ type ResGetPigReward struct { func (x *ResGetPigReward) Reset() { *x = ResGetPigReward{} - mi := &file_Gameapi_proto_msgTypes[113] + mi := &file_Gameapi_proto_msgTypes[115] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7092,7 +7239,7 @@ func (x *ResGetPigReward) String() string { func (*ResGetPigReward) ProtoMessage() {} func (x *ResGetPigReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[113] + mi := &file_Gameapi_proto_msgTypes[115] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7105,7 +7252,7 @@ func (x *ResGetPigReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGetPigReward.ProtoReflect.Descriptor instead. func (*ResGetPigReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{113} + return file_Gameapi_proto_rawDescGZIP(), []int{115} } func (x *ResGetPigReward) GetPigId() int32 { @@ -7146,7 +7293,7 @@ type ReqDropPigReward struct { func (x *ReqDropPigReward) Reset() { *x = ReqDropPigReward{} - mi := &file_Gameapi_proto_msgTypes[114] + mi := &file_Gameapi_proto_msgTypes[116] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7158,7 +7305,7 @@ func (x *ReqDropPigReward) String() string { func (*ReqDropPigReward) ProtoMessage() {} func (x *ReqDropPigReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[114] + mi := &file_Gameapi_proto_msgTypes[116] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7171,7 +7318,7 @@ func (x *ReqDropPigReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqDropPigReward.ProtoReflect.Descriptor instead. func (*ReqDropPigReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{114} + return file_Gameapi_proto_rawDescGZIP(), []int{116} } func (x *ReqDropPigReward) GetPigId() int32 { @@ -7192,7 +7339,7 @@ type ResDropPigReward struct { func (x *ResDropPigReward) Reset() { *x = ResDropPigReward{} - mi := &file_Gameapi_proto_msgTypes[115] + mi := &file_Gameapi_proto_msgTypes[117] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7204,7 +7351,7 @@ func (x *ResDropPigReward) String() string { func (*ResDropPigReward) ProtoMessage() {} func (x *ResDropPigReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[115] + mi := &file_Gameapi_proto_msgTypes[117] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7217,7 +7364,7 @@ func (x *ResDropPigReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResDropPigReward.ProtoReflect.Descriptor instead. func (*ResDropPigReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{115} + return file_Gameapi_proto_rawDescGZIP(), []int{117} } func (x *ResDropPigReward) GetPigId() int32 { @@ -7245,7 +7392,7 @@ type ReqPromotionDetail struct { func (x *ReqPromotionDetail) Reset() { *x = ReqPromotionDetail{} - mi := &file_Gameapi_proto_msgTypes[116] + mi := &file_Gameapi_proto_msgTypes[118] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7257,7 +7404,7 @@ func (x *ReqPromotionDetail) String() string { func (*ReqPromotionDetail) ProtoMessage() {} func (x *ReqPromotionDetail) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[116] + mi := &file_Gameapi_proto_msgTypes[118] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7270,7 +7417,7 @@ func (x *ReqPromotionDetail) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPromotionDetail.ProtoReflect.Descriptor instead. func (*ReqPromotionDetail) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{116} + return file_Gameapi_proto_rawDescGZIP(), []int{118} } func (x *ReqPromotionDetail) GetDwUin() int32 { @@ -7303,7 +7450,7 @@ type ResPromotionDetail struct { func (x *ResPromotionDetail) Reset() { *x = ResPromotionDetail{} - mi := &file_Gameapi_proto_msgTypes[117] + mi := &file_Gameapi_proto_msgTypes[119] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7315,7 +7462,7 @@ func (x *ResPromotionDetail) String() string { func (*ResPromotionDetail) ProtoMessage() {} func (x *ResPromotionDetail) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[117] + mi := &file_Gameapi_proto_msgTypes[119] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7328,7 +7475,7 @@ func (x *ResPromotionDetail) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPromotionDetail.ProtoReflect.Descriptor instead. func (*ResPromotionDetail) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{117} + return file_Gameapi_proto_rawDescGZIP(), []int{119} } func (x *ResPromotionDetail) GetDwUin() int32 { @@ -7391,7 +7538,7 @@ type ReqBuyLimitPromotionReward struct { func (x *ReqBuyLimitPromotionReward) Reset() { *x = ReqBuyLimitPromotionReward{} - mi := &file_Gameapi_proto_msgTypes[118] + mi := &file_Gameapi_proto_msgTypes[120] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7403,7 +7550,7 @@ func (x *ReqBuyLimitPromotionReward) String() string { func (*ReqBuyLimitPromotionReward) ProtoMessage() {} func (x *ReqBuyLimitPromotionReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[118] + mi := &file_Gameapi_proto_msgTypes[120] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7416,7 +7563,7 @@ func (x *ReqBuyLimitPromotionReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqBuyLimitPromotionReward.ProtoReflect.Descriptor instead. func (*ReqBuyLimitPromotionReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{118} + return file_Gameapi_proto_rawDescGZIP(), []int{120} } func (x *ReqBuyLimitPromotionReward) GetDwUin() int32 { @@ -7445,7 +7592,7 @@ type ResBuyLimitPromotionReward struct { func (x *ResBuyLimitPromotionReward) Reset() { *x = ResBuyLimitPromotionReward{} - mi := &file_Gameapi_proto_msgTypes[119] + mi := &file_Gameapi_proto_msgTypes[121] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7457,7 +7604,7 @@ func (x *ResBuyLimitPromotionReward) String() string { func (*ResBuyLimitPromotionReward) ProtoMessage() {} func (x *ResBuyLimitPromotionReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[119] + mi := &file_Gameapi_proto_msgTypes[121] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7470,7 +7617,7 @@ func (x *ResBuyLimitPromotionReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResBuyLimitPromotionReward.ProtoReflect.Descriptor instead. func (*ResBuyLimitPromotionReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{119} + return file_Gameapi_proto_rawDescGZIP(), []int{121} } func (x *ResBuyLimitPromotionReward) GetDwUin() int32 { @@ -7505,7 +7652,7 @@ type ReqInfinitePackDetail struct { func (x *ReqInfinitePackDetail) Reset() { *x = ReqInfinitePackDetail{} - mi := &file_Gameapi_proto_msgTypes[120] + mi := &file_Gameapi_proto_msgTypes[122] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7517,7 +7664,7 @@ func (x *ReqInfinitePackDetail) String() string { func (*ReqInfinitePackDetail) ProtoMessage() {} func (x *ReqInfinitePackDetail) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[120] + mi := &file_Gameapi_proto_msgTypes[122] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7530,7 +7677,7 @@ func (x *ReqInfinitePackDetail) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqInfinitePackDetail.ProtoReflect.Descriptor instead. func (*ReqInfinitePackDetail) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{120} + return file_Gameapi_proto_rawDescGZIP(), []int{122} } func (x *ReqInfinitePackDetail) GetDwUin() int32 { @@ -7563,7 +7710,7 @@ type ResInfinitePackDetail struct { func (x *ResInfinitePackDetail) Reset() { *x = ResInfinitePackDetail{} - mi := &file_Gameapi_proto_msgTypes[121] + mi := &file_Gameapi_proto_msgTypes[123] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7575,7 +7722,7 @@ func (x *ResInfinitePackDetail) String() string { func (*ResInfinitePackDetail) ProtoMessage() {} func (x *ResInfinitePackDetail) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[121] + mi := &file_Gameapi_proto_msgTypes[123] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7588,7 +7735,7 @@ func (x *ResInfinitePackDetail) ProtoReflect() protoreflect.Message { // Deprecated: Use ResInfinitePackDetail.ProtoReflect.Descriptor instead. func (*ResInfinitePackDetail) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{121} + return file_Gameapi_proto_rawDescGZIP(), []int{123} } func (x *ResInfinitePackDetail) GetDwUin() int32 { @@ -7652,7 +7799,7 @@ type ReqBuyInfinitePack struct { func (x *ReqBuyInfinitePack) Reset() { *x = ReqBuyInfinitePack{} - mi := &file_Gameapi_proto_msgTypes[122] + mi := &file_Gameapi_proto_msgTypes[124] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7664,7 +7811,7 @@ func (x *ReqBuyInfinitePack) String() string { func (*ReqBuyInfinitePack) ProtoMessage() {} func (x *ReqBuyInfinitePack) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[122] + mi := &file_Gameapi_proto_msgTypes[124] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7677,7 +7824,7 @@ func (x *ReqBuyInfinitePack) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqBuyInfinitePack.ProtoReflect.Descriptor instead. func (*ReqBuyInfinitePack) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{122} + return file_Gameapi_proto_rawDescGZIP(), []int{124} } func (x *ReqBuyInfinitePack) GetDwUin() int32 { @@ -7714,7 +7861,7 @@ type ResBuyInfinitePack struct { func (x *ResBuyInfinitePack) Reset() { *x = ResBuyInfinitePack{} - mi := &file_Gameapi_proto_msgTypes[123] + mi := &file_Gameapi_proto_msgTypes[125] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7726,7 +7873,7 @@ func (x *ResBuyInfinitePack) String() string { func (*ResBuyInfinitePack) ProtoMessage() {} func (x *ResBuyInfinitePack) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[123] + mi := &file_Gameapi_proto_msgTypes[125] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7739,7 +7886,7 @@ func (x *ResBuyInfinitePack) ProtoReflect() protoreflect.Message { // Deprecated: Use ResBuyInfinitePack.ProtoReflect.Descriptor instead. func (*ResBuyInfinitePack) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{123} + return file_Gameapi_proto_rawDescGZIP(), []int{125} } func (x *ResBuyInfinitePack) GetDwUin() int32 { @@ -7786,7 +7933,7 @@ type NotifyRefreshInfinitePack struct { func (x *NotifyRefreshInfinitePack) Reset() { *x = NotifyRefreshInfinitePack{} - mi := &file_Gameapi_proto_msgTypes[124] + mi := &file_Gameapi_proto_msgTypes[126] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7798,7 +7945,7 @@ func (x *NotifyRefreshInfinitePack) String() string { func (*NotifyRefreshInfinitePack) ProtoMessage() {} func (x *NotifyRefreshInfinitePack) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[124] + mi := &file_Gameapi_proto_msgTypes[126] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7811,7 +7958,7 @@ func (x *NotifyRefreshInfinitePack) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyRefreshInfinitePack.ProtoReflect.Descriptor instead. func (*NotifyRefreshInfinitePack) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{124} + return file_Gameapi_proto_rawDescGZIP(), []int{126} } func (x *NotifyRefreshInfinitePack) GetDwUin() int32 { @@ -7874,7 +8021,7 @@ type Req7DayLoginDetail struct { func (x *Req7DayLoginDetail) Reset() { *x = Req7DayLoginDetail{} - mi := &file_Gameapi_proto_msgTypes[125] + mi := &file_Gameapi_proto_msgTypes[127] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7886,7 +8033,7 @@ func (x *Req7DayLoginDetail) String() string { func (*Req7DayLoginDetail) ProtoMessage() {} func (x *Req7DayLoginDetail) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[125] + mi := &file_Gameapi_proto_msgTypes[127] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7899,7 +8046,7 @@ func (x *Req7DayLoginDetail) ProtoReflect() protoreflect.Message { // Deprecated: Use Req7DayLoginDetail.ProtoReflect.Descriptor instead. func (*Req7DayLoginDetail) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{125} + return file_Gameapi_proto_rawDescGZIP(), []int{127} } func (x *Req7DayLoginDetail) GetDwUin() int32 { @@ -7933,7 +8080,7 @@ type Res7DayLoginDetail struct { func (x *Res7DayLoginDetail) Reset() { *x = Res7DayLoginDetail{} - mi := &file_Gameapi_proto_msgTypes[126] + mi := &file_Gameapi_proto_msgTypes[128] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7945,7 +8092,7 @@ func (x *Res7DayLoginDetail) String() string { func (*Res7DayLoginDetail) ProtoMessage() {} func (x *Res7DayLoginDetail) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[126] + mi := &file_Gameapi_proto_msgTypes[128] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7958,7 +8105,7 @@ func (x *Res7DayLoginDetail) ProtoReflect() protoreflect.Message { // Deprecated: Use Res7DayLoginDetail.ProtoReflect.Descriptor instead. func (*Res7DayLoginDetail) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{126} + return file_Gameapi_proto_rawDescGZIP(), []int{128} } func (x *Res7DayLoginDetail) GetDwUin() int32 { @@ -8029,7 +8176,7 @@ type ReqGet7DayLoginPack struct { func (x *ReqGet7DayLoginPack) Reset() { *x = ReqGet7DayLoginPack{} - mi := &file_Gameapi_proto_msgTypes[127] + mi := &file_Gameapi_proto_msgTypes[129] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8041,7 +8188,7 @@ func (x *ReqGet7DayLoginPack) String() string { func (*ReqGet7DayLoginPack) ProtoMessage() {} func (x *ReqGet7DayLoginPack) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[127] + mi := &file_Gameapi_proto_msgTypes[129] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8054,7 +8201,7 @@ func (x *ReqGet7DayLoginPack) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGet7DayLoginPack.ProtoReflect.Descriptor instead. func (*ReqGet7DayLoginPack) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{127} + return file_Gameapi_proto_rawDescGZIP(), []int{129} } func (x *ReqGet7DayLoginPack) GetDwUin() int32 { @@ -8092,7 +8239,7 @@ type ResGet7DayLoginPack struct { func (x *ResGet7DayLoginPack) Reset() { *x = ResGet7DayLoginPack{} - mi := &file_Gameapi_proto_msgTypes[128] + mi := &file_Gameapi_proto_msgTypes[130] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8104,7 +8251,7 @@ func (x *ResGet7DayLoginPack) String() string { func (*ResGet7DayLoginPack) ProtoMessage() {} func (x *ResGet7DayLoginPack) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[128] + mi := &file_Gameapi_proto_msgTypes[130] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8117,7 +8264,7 @@ func (x *ResGet7DayLoginPack) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGet7DayLoginPack.ProtoReflect.Descriptor instead. func (*ResGet7DayLoginPack) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{128} + return file_Gameapi_proto_rawDescGZIP(), []int{130} } func (x *ResGet7DayLoginPack) GetDwUin() int32 { @@ -8166,7 +8313,7 @@ type NotifyDailyRenew7Day struct { func (x *NotifyDailyRenew7Day) Reset() { *x = NotifyDailyRenew7Day{} - mi := &file_Gameapi_proto_msgTypes[129] + mi := &file_Gameapi_proto_msgTypes[131] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8178,7 +8325,7 @@ func (x *NotifyDailyRenew7Day) String() string { func (*NotifyDailyRenew7Day) ProtoMessage() {} func (x *NotifyDailyRenew7Day) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[129] + mi := &file_Gameapi_proto_msgTypes[131] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8191,7 +8338,7 @@ func (x *NotifyDailyRenew7Day) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyDailyRenew7Day.ProtoReflect.Descriptor instead. func (*NotifyDailyRenew7Day) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{129} + return file_Gameapi_proto_rawDescGZIP(), []int{131} } func (x *NotifyDailyRenew7Day) GetActiveID() int32 { @@ -8219,7 +8366,7 @@ type ReqOfflineReconnect struct { func (x *ReqOfflineReconnect) Reset() { *x = ReqOfflineReconnect{} - mi := &file_Gameapi_proto_msgTypes[130] + mi := &file_Gameapi_proto_msgTypes[132] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8231,7 +8378,7 @@ func (x *ReqOfflineReconnect) String() string { func (*ReqOfflineReconnect) ProtoMessage() {} func (x *ReqOfflineReconnect) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[130] + mi := &file_Gameapi_proto_msgTypes[132] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8244,7 +8391,7 @@ func (x *ReqOfflineReconnect) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqOfflineReconnect.ProtoReflect.Descriptor instead. func (*ReqOfflineReconnect) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{130} + return file_Gameapi_proto_rawDescGZIP(), []int{132} } func (x *ReqOfflineReconnect) GetDwUin() int32 { @@ -8265,7 +8412,7 @@ type ResOfflineReconnect struct { func (x *ResOfflineReconnect) Reset() { *x = ResOfflineReconnect{} - mi := &file_Gameapi_proto_msgTypes[131] + mi := &file_Gameapi_proto_msgTypes[133] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8277,7 +8424,7 @@ func (x *ResOfflineReconnect) String() string { func (*ResOfflineReconnect) ProtoMessage() {} func (x *ResOfflineReconnect) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[131] + mi := &file_Gameapi_proto_msgTypes[133] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8290,7 +8437,7 @@ func (x *ResOfflineReconnect) ProtoReflect() protoreflect.Message { // Deprecated: Use ResOfflineReconnect.ProtoReflect.Descriptor instead. func (*ResOfflineReconnect) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{131} + return file_Gameapi_proto_rawDescGZIP(), []int{133} } func (x *ResOfflineReconnect) GetDwUin() int32 { @@ -8318,7 +8465,7 @@ type ReqServerVersion struct { func (x *ReqServerVersion) Reset() { *x = ReqServerVersion{} - mi := &file_Gameapi_proto_msgTypes[132] + mi := &file_Gameapi_proto_msgTypes[134] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8330,7 +8477,7 @@ func (x *ReqServerVersion) String() string { func (*ReqServerVersion) ProtoMessage() {} func (x *ReqServerVersion) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[132] + mi := &file_Gameapi_proto_msgTypes[134] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8343,7 +8490,7 @@ func (x *ReqServerVersion) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqServerVersion.ProtoReflect.Descriptor instead. func (*ReqServerVersion) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{132} + return file_Gameapi_proto_rawDescGZIP(), []int{134} } func (x *ReqServerVersion) GetDwUin() int32 { @@ -8363,7 +8510,7 @@ type ResServerVersion struct { func (x *ResServerVersion) Reset() { *x = ResServerVersion{} - mi := &file_Gameapi_proto_msgTypes[133] + mi := &file_Gameapi_proto_msgTypes[135] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8375,7 +8522,7 @@ func (x *ResServerVersion) String() string { func (*ResServerVersion) ProtoMessage() {} func (x *ResServerVersion) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[133] + mi := &file_Gameapi_proto_msgTypes[135] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8388,7 +8535,7 @@ func (x *ResServerVersion) ProtoReflect() protoreflect.Message { // Deprecated: Use ResServerVersion.ProtoReflect.Descriptor instead. func (*ResServerVersion) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{133} + return file_Gameapi_proto_rawDescGZIP(), []int{135} } func (x *ResServerVersion) GetVersion() int32 { @@ -8408,7 +8555,7 @@ type ReqLevelUpPackInfo struct { func (x *ReqLevelUpPackInfo) Reset() { *x = ReqLevelUpPackInfo{} - mi := &file_Gameapi_proto_msgTypes[134] + mi := &file_Gameapi_proto_msgTypes[136] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8420,7 +8567,7 @@ func (x *ReqLevelUpPackInfo) String() string { func (*ReqLevelUpPackInfo) ProtoMessage() {} func (x *ReqLevelUpPackInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[134] + mi := &file_Gameapi_proto_msgTypes[136] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8433,7 +8580,7 @@ func (x *ReqLevelUpPackInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqLevelUpPackInfo.ProtoReflect.Descriptor instead. func (*ReqLevelUpPackInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{134} + return file_Gameapi_proto_rawDescGZIP(), []int{136} } func (x *ReqLevelUpPackInfo) GetDwUin() int32 { @@ -8455,7 +8602,7 @@ type ResLevelUpPackInfo struct { func (x *ResLevelUpPackInfo) Reset() { *x = ResLevelUpPackInfo{} - mi := &file_Gameapi_proto_msgTypes[135] + mi := &file_Gameapi_proto_msgTypes[137] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8467,7 +8614,7 @@ func (x *ResLevelUpPackInfo) String() string { func (*ResLevelUpPackInfo) ProtoMessage() {} func (x *ResLevelUpPackInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[135] + mi := &file_Gameapi_proto_msgTypes[137] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8480,7 +8627,7 @@ func (x *ResLevelUpPackInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ResLevelUpPackInfo.ProtoReflect.Descriptor instead. func (*ResLevelUpPackInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{135} + return file_Gameapi_proto_rawDescGZIP(), []int{137} } func (x *ResLevelUpPackInfo) GetDwUin() int32 { @@ -8515,7 +8662,7 @@ type ReqBuyLevelUpPack struct { func (x *ReqBuyLevelUpPack) Reset() { *x = ReqBuyLevelUpPack{} - mi := &file_Gameapi_proto_msgTypes[136] + mi := &file_Gameapi_proto_msgTypes[138] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8527,7 +8674,7 @@ func (x *ReqBuyLevelUpPack) String() string { func (*ReqBuyLevelUpPack) ProtoMessage() {} func (x *ReqBuyLevelUpPack) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[136] + mi := &file_Gameapi_proto_msgTypes[138] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8540,7 +8687,7 @@ func (x *ReqBuyLevelUpPack) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqBuyLevelUpPack.ProtoReflect.Descriptor instead. func (*ReqBuyLevelUpPack) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{136} + return file_Gameapi_proto_rawDescGZIP(), []int{138} } func (x *ReqBuyLevelUpPack) GetDwUin() int32 { @@ -8569,7 +8716,7 @@ type ResBuyLevelUpPack struct { func (x *ResBuyLevelUpPack) Reset() { *x = ResBuyLevelUpPack{} - mi := &file_Gameapi_proto_msgTypes[137] + mi := &file_Gameapi_proto_msgTypes[139] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8581,7 +8728,7 @@ func (x *ResBuyLevelUpPack) String() string { func (*ResBuyLevelUpPack) ProtoMessage() {} func (x *ResBuyLevelUpPack) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[137] + mi := &file_Gameapi_proto_msgTypes[139] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8594,7 +8741,7 @@ func (x *ResBuyLevelUpPack) ProtoReflect() protoreflect.Message { // Deprecated: Use ResBuyLevelUpPack.ProtoReflect.Descriptor instead. func (*ResBuyLevelUpPack) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{137} + return file_Gameapi_proto_rawDescGZIP(), []int{139} } func (x *ResBuyLevelUpPack) GetDwUin() int32 { @@ -8628,7 +8775,7 @@ type ReqGrowthFundInfo struct { func (x *ReqGrowthFundInfo) Reset() { *x = ReqGrowthFundInfo{} - mi := &file_Gameapi_proto_msgTypes[138] + mi := &file_Gameapi_proto_msgTypes[140] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8640,7 +8787,7 @@ func (x *ReqGrowthFundInfo) String() string { func (*ReqGrowthFundInfo) ProtoMessage() {} func (x *ReqGrowthFundInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[138] + mi := &file_Gameapi_proto_msgTypes[140] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8653,7 +8800,7 @@ func (x *ReqGrowthFundInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGrowthFundInfo.ProtoReflect.Descriptor instead. func (*ReqGrowthFundInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{138} + return file_Gameapi_proto_rawDescGZIP(), []int{140} } func (x *ReqGrowthFundInfo) GetDwUin() int32 { @@ -8675,7 +8822,7 @@ type ResGrowthFundInfo struct { func (x *ResGrowthFundInfo) Reset() { *x = ResGrowthFundInfo{} - mi := &file_Gameapi_proto_msgTypes[139] + mi := &file_Gameapi_proto_msgTypes[141] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8687,7 +8834,7 @@ func (x *ResGrowthFundInfo) String() string { func (*ResGrowthFundInfo) ProtoMessage() {} func (x *ResGrowthFundInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[139] + mi := &file_Gameapi_proto_msgTypes[141] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8700,7 +8847,7 @@ func (x *ResGrowthFundInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGrowthFundInfo.ProtoReflect.Descriptor instead. func (*ResGrowthFundInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{139} + return file_Gameapi_proto_rawDescGZIP(), []int{141} } func (x *ResGrowthFundInfo) GetDwUin() int32 { @@ -8734,7 +8881,7 @@ type ReqBuyGrowthFund struct { func (x *ReqBuyGrowthFund) Reset() { *x = ReqBuyGrowthFund{} - mi := &file_Gameapi_proto_msgTypes[140] + mi := &file_Gameapi_proto_msgTypes[142] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8746,7 +8893,7 @@ func (x *ReqBuyGrowthFund) String() string { func (*ReqBuyGrowthFund) ProtoMessage() {} func (x *ReqBuyGrowthFund) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[140] + mi := &file_Gameapi_proto_msgTypes[142] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8759,7 +8906,7 @@ func (x *ReqBuyGrowthFund) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqBuyGrowthFund.ProtoReflect.Descriptor instead. func (*ReqBuyGrowthFund) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{140} + return file_Gameapi_proto_rawDescGZIP(), []int{142} } func (x *ReqBuyGrowthFund) GetDwUin() int32 { @@ -8780,7 +8927,7 @@ type ResBuyGrowthFund struct { func (x *ResBuyGrowthFund) Reset() { *x = ResBuyGrowthFund{} - mi := &file_Gameapi_proto_msgTypes[141] + mi := &file_Gameapi_proto_msgTypes[143] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8792,7 +8939,7 @@ func (x *ResBuyGrowthFund) String() string { func (*ResBuyGrowthFund) ProtoMessage() {} func (x *ResBuyGrowthFund) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[141] + mi := &file_Gameapi_proto_msgTypes[143] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8805,7 +8952,7 @@ func (x *ResBuyGrowthFund) ProtoReflect() protoreflect.Message { // Deprecated: Use ResBuyGrowthFund.ProtoReflect.Descriptor instead. func (*ResBuyGrowthFund) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{141} + return file_Gameapi_proto_rawDescGZIP(), []int{143} } func (x *ResBuyGrowthFund) GetDwUin() int32 { @@ -8833,7 +8980,7 @@ type ReqGetGrowthFundWard struct { func (x *ReqGetGrowthFundWard) Reset() { *x = ReqGetGrowthFundWard{} - mi := &file_Gameapi_proto_msgTypes[142] + mi := &file_Gameapi_proto_msgTypes[144] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8845,7 +8992,7 @@ func (x *ReqGetGrowthFundWard) String() string { func (*ReqGetGrowthFundWard) ProtoMessage() {} func (x *ReqGetGrowthFundWard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[142] + mi := &file_Gameapi_proto_msgTypes[144] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8858,7 +9005,7 @@ func (x *ReqGetGrowthFundWard) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGetGrowthFundWard.ProtoReflect.Descriptor instead. func (*ReqGetGrowthFundWard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{142} + return file_Gameapi_proto_rawDescGZIP(), []int{144} } func (x *ReqGetGrowthFundWard) GetDwUin() int32 { @@ -8887,7 +9034,7 @@ type ResGetGrowthFundWard struct { func (x *ResGetGrowthFundWard) Reset() { *x = ResGetGrowthFundWard{} - mi := &file_Gameapi_proto_msgTypes[143] + mi := &file_Gameapi_proto_msgTypes[145] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8899,7 +9046,7 @@ func (x *ResGetGrowthFundWard) String() string { func (*ResGetGrowthFundWard) ProtoMessage() {} func (x *ResGetGrowthFundWard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[143] + mi := &file_Gameapi_proto_msgTypes[145] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8912,7 +9059,7 @@ func (x *ResGetGrowthFundWard) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGetGrowthFundWard.ProtoReflect.Descriptor instead. func (*ResGetGrowthFundWard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{143} + return file_Gameapi_proto_rawDescGZIP(), []int{145} } func (x *ResGetGrowthFundWard) GetDwUin() int32 { @@ -8946,7 +9093,7 @@ type ReqSupremeGiftInfo struct { func (x *ReqSupremeGiftInfo) Reset() { *x = ReqSupremeGiftInfo{} - mi := &file_Gameapi_proto_msgTypes[144] + mi := &file_Gameapi_proto_msgTypes[146] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8958,7 +9105,7 @@ func (x *ReqSupremeGiftInfo) String() string { func (*ReqSupremeGiftInfo) ProtoMessage() {} func (x *ReqSupremeGiftInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[144] + mi := &file_Gameapi_proto_msgTypes[146] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8971,7 +9118,7 @@ func (x *ReqSupremeGiftInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqSupremeGiftInfo.ProtoReflect.Descriptor instead. func (*ReqSupremeGiftInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{144} + return file_Gameapi_proto_rawDescGZIP(), []int{146} } func (x *ReqSupremeGiftInfo) GetDwUin() int32 { @@ -8997,7 +9144,7 @@ type ResSupremeGiftInfo struct { func (x *ResSupremeGiftInfo) Reset() { *x = ResSupremeGiftInfo{} - mi := &file_Gameapi_proto_msgTypes[145] + mi := &file_Gameapi_proto_msgTypes[147] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9009,7 +9156,7 @@ func (x *ResSupremeGiftInfo) String() string { func (*ResSupremeGiftInfo) ProtoMessage() {} func (x *ResSupremeGiftInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[145] + mi := &file_Gameapi_proto_msgTypes[147] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9022,7 +9169,7 @@ func (x *ResSupremeGiftInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ResSupremeGiftInfo.ProtoReflect.Descriptor instead. func (*ResSupremeGiftInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{145} + return file_Gameapi_proto_rawDescGZIP(), []int{147} } func (x *ResSupremeGiftInfo) GetDwUin() int32 { @@ -9084,7 +9231,7 @@ type ReqBuySupremeGift struct { func (x *ReqBuySupremeGift) Reset() { *x = ReqBuySupremeGift{} - mi := &file_Gameapi_proto_msgTypes[146] + mi := &file_Gameapi_proto_msgTypes[148] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9096,7 +9243,7 @@ func (x *ReqBuySupremeGift) String() string { func (*ReqBuySupremeGift) ProtoMessage() {} func (x *ReqBuySupremeGift) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[146] + mi := &file_Gameapi_proto_msgTypes[148] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9109,7 +9256,7 @@ func (x *ReqBuySupremeGift) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqBuySupremeGift.ProtoReflect.Descriptor instead. func (*ReqBuySupremeGift) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{146} + return file_Gameapi_proto_rawDescGZIP(), []int{148} } func (x *ReqBuySupremeGift) GetDwUin() int32 { @@ -9135,7 +9282,7 @@ type ResBuySupremeGift struct { func (x *ResBuySupremeGift) Reset() { *x = ResBuySupremeGift{} - mi := &file_Gameapi_proto_msgTypes[147] + mi := &file_Gameapi_proto_msgTypes[149] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9147,7 +9294,7 @@ func (x *ResBuySupremeGift) String() string { func (*ResBuySupremeGift) ProtoMessage() {} func (x *ResBuySupremeGift) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[147] + mi := &file_Gameapi_proto_msgTypes[149] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9160,7 +9307,7 @@ func (x *ResBuySupremeGift) ProtoReflect() protoreflect.Message { // Deprecated: Use ResBuySupremeGift.ProtoReflect.Descriptor instead. func (*ResBuySupremeGift) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{147} + return file_Gameapi_proto_rawDescGZIP(), []int{149} } func (x *ResBuySupremeGift) GetDwUin() int32 { @@ -9224,7 +9371,7 @@ type NotifySupremeGiftTimeOver struct { func (x *NotifySupremeGiftTimeOver) Reset() { *x = NotifySupremeGiftTimeOver{} - mi := &file_Gameapi_proto_msgTypes[148] + mi := &file_Gameapi_proto_msgTypes[150] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9236,7 +9383,7 @@ func (x *NotifySupremeGiftTimeOver) String() string { func (*NotifySupremeGiftTimeOver) ProtoMessage() {} func (x *NotifySupremeGiftTimeOver) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[148] + mi := &file_Gameapi_proto_msgTypes[150] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9249,7 +9396,7 @@ func (x *NotifySupremeGiftTimeOver) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifySupremeGiftTimeOver.ProtoReflect.Descriptor instead. func (*NotifySupremeGiftTimeOver) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{148} + return file_Gameapi_proto_rawDescGZIP(), []int{150} } func (x *NotifySupremeGiftTimeOver) GetDwUin() int32 { @@ -9284,7 +9431,7 @@ type ReqIllustratedInfo struct { func (x *ReqIllustratedInfo) Reset() { *x = ReqIllustratedInfo{} - mi := &file_Gameapi_proto_msgTypes[149] + mi := &file_Gameapi_proto_msgTypes[151] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9296,7 +9443,7 @@ func (x *ReqIllustratedInfo) String() string { func (*ReqIllustratedInfo) ProtoMessage() {} func (x *ReqIllustratedInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[149] + mi := &file_Gameapi_proto_msgTypes[151] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9309,7 +9456,7 @@ func (x *ReqIllustratedInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqIllustratedInfo.ProtoReflect.Descriptor instead. func (*ReqIllustratedInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{149} + return file_Gameapi_proto_rawDescGZIP(), []int{151} } func (x *ReqIllustratedInfo) GetDwUin() int32 { @@ -9330,7 +9477,7 @@ type SingleIllustratedItem struct { func (x *SingleIllustratedItem) Reset() { *x = SingleIllustratedItem{} - mi := &file_Gameapi_proto_msgTypes[150] + mi := &file_Gameapi_proto_msgTypes[152] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9342,7 +9489,7 @@ func (x *SingleIllustratedItem) String() string { func (*SingleIllustratedItem) ProtoMessage() {} func (x *SingleIllustratedItem) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[150] + mi := &file_Gameapi_proto_msgTypes[152] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9355,7 +9502,7 @@ func (x *SingleIllustratedItem) ProtoReflect() protoreflect.Message { // Deprecated: Use SingleIllustratedItem.ProtoReflect.Descriptor instead. func (*SingleIllustratedItem) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{150} + return file_Gameapi_proto_rawDescGZIP(), []int{152} } func (x *SingleIllustratedItem) GetMergeId() int32 { @@ -9384,7 +9531,7 @@ type CategoryIllustratedData struct { func (x *CategoryIllustratedData) Reset() { *x = CategoryIllustratedData{} - mi := &file_Gameapi_proto_msgTypes[151] + mi := &file_Gameapi_proto_msgTypes[153] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9396,7 +9543,7 @@ func (x *CategoryIllustratedData) String() string { func (*CategoryIllustratedData) ProtoMessage() {} func (x *CategoryIllustratedData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[151] + mi := &file_Gameapi_proto_msgTypes[153] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9409,7 +9556,7 @@ func (x *CategoryIllustratedData) ProtoReflect() protoreflect.Message { // Deprecated: Use CategoryIllustratedData.ProtoReflect.Descriptor instead. func (*CategoryIllustratedData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{151} + return file_Gameapi_proto_rawDescGZIP(), []int{153} } func (x *CategoryIllustratedData) GetCategory() string { @@ -9444,7 +9591,7 @@ type ResIllustratedInfo struct { func (x *ResIllustratedInfo) Reset() { *x = ResIllustratedInfo{} - mi := &file_Gameapi_proto_msgTypes[152] + mi := &file_Gameapi_proto_msgTypes[154] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9456,7 +9603,7 @@ func (x *ResIllustratedInfo) String() string { func (*ResIllustratedInfo) ProtoMessage() {} func (x *ResIllustratedInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[152] + mi := &file_Gameapi_proto_msgTypes[154] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9469,7 +9616,7 @@ func (x *ResIllustratedInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ResIllustratedInfo.ProtoReflect.Descriptor instead. func (*ResIllustratedInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{152} + return file_Gameapi_proto_rawDescGZIP(), []int{154} } func (x *ResIllustratedInfo) GetDwUin() int32 { @@ -9498,7 +9645,7 @@ type UpdateIllustrateItem struct { func (x *UpdateIllustrateItem) Reset() { *x = UpdateIllustrateItem{} - mi := &file_Gameapi_proto_msgTypes[153] + mi := &file_Gameapi_proto_msgTypes[155] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9510,7 +9657,7 @@ func (x *UpdateIllustrateItem) String() string { func (*UpdateIllustrateItem) ProtoMessage() {} func (x *UpdateIllustrateItem) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[153] + mi := &file_Gameapi_proto_msgTypes[155] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9523,7 +9670,7 @@ func (x *UpdateIllustrateItem) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateIllustrateItem.ProtoReflect.Descriptor instead. func (*UpdateIllustrateItem) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{153} + return file_Gameapi_proto_rawDescGZIP(), []int{155} } func (x *UpdateIllustrateItem) GetCategory() string { @@ -9558,7 +9705,7 @@ type ReqGetIllustrateItemReward struct { func (x *ReqGetIllustrateItemReward) Reset() { *x = ReqGetIllustrateItemReward{} - mi := &file_Gameapi_proto_msgTypes[154] + mi := &file_Gameapi_proto_msgTypes[156] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9570,7 +9717,7 @@ func (x *ReqGetIllustrateItemReward) String() string { func (*ReqGetIllustrateItemReward) ProtoMessage() {} func (x *ReqGetIllustrateItemReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[154] + mi := &file_Gameapi_proto_msgTypes[156] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9583,7 +9730,7 @@ func (x *ReqGetIllustrateItemReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGetIllustrateItemReward.ProtoReflect.Descriptor instead. func (*ReqGetIllustrateItemReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{154} + return file_Gameapi_proto_rawDescGZIP(), []int{156} } func (x *ReqGetIllustrateItemReward) GetCategory() string { @@ -9613,7 +9760,7 @@ type ResGetIllustrateItemReward struct { func (x *ResGetIllustrateItemReward) Reset() { *x = ResGetIllustrateItemReward{} - mi := &file_Gameapi_proto_msgTypes[155] + mi := &file_Gameapi_proto_msgTypes[157] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9625,7 +9772,7 @@ func (x *ResGetIllustrateItemReward) String() string { func (*ResGetIllustrateItemReward) ProtoMessage() {} func (x *ResGetIllustrateItemReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[155] + mi := &file_Gameapi_proto_msgTypes[157] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9638,7 +9785,7 @@ func (x *ResGetIllustrateItemReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGetIllustrateItemReward.ProtoReflect.Descriptor instead. func (*ResGetIllustrateItemReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{155} + return file_Gameapi_proto_rawDescGZIP(), []int{157} } func (x *ResGetIllustrateItemReward) GetCategory() string { @@ -9680,7 +9827,7 @@ type ReqCardCollectDetail struct { func (x *ReqCardCollectDetail) Reset() { *x = ReqCardCollectDetail{} - mi := &file_Gameapi_proto_msgTypes[156] + mi := &file_Gameapi_proto_msgTypes[158] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9692,7 +9839,7 @@ func (x *ReqCardCollectDetail) String() string { func (*ReqCardCollectDetail) ProtoMessage() {} func (x *ReqCardCollectDetail) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[156] + mi := &file_Gameapi_proto_msgTypes[158] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9705,7 +9852,7 @@ func (x *ReqCardCollectDetail) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCardCollectDetail.ProtoReflect.Descriptor instead. func (*ReqCardCollectDetail) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{156} + return file_Gameapi_proto_rawDescGZIP(), []int{158} } func (x *ReqCardCollectDetail) GetDwUin() int32 { @@ -9746,7 +9893,7 @@ type ResCardCollectDetail struct { func (x *ResCardCollectDetail) Reset() { *x = ResCardCollectDetail{} - mi := &file_Gameapi_proto_msgTypes[157] + mi := &file_Gameapi_proto_msgTypes[159] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9758,7 +9905,7 @@ func (x *ResCardCollectDetail) String() string { func (*ResCardCollectDetail) ProtoMessage() {} func (x *ResCardCollectDetail) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[157] + mi := &file_Gameapi_proto_msgTypes[159] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9771,7 +9918,7 @@ func (x *ResCardCollectDetail) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCardCollectDetail.ProtoReflect.Descriptor instead. func (*ResCardCollectDetail) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{157} + return file_Gameapi_proto_rawDescGZIP(), []int{159} } func (x *ResCardCollectDetail) GetDwUin() int32 { @@ -9890,7 +10037,7 @@ type ReqGetCardAlbumReward struct { func (x *ReqGetCardAlbumReward) Reset() { *x = ReqGetCardAlbumReward{} - mi := &file_Gameapi_proto_msgTypes[158] + mi := &file_Gameapi_proto_msgTypes[160] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9902,7 +10049,7 @@ func (x *ReqGetCardAlbumReward) String() string { func (*ReqGetCardAlbumReward) ProtoMessage() {} func (x *ReqGetCardAlbumReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[158] + mi := &file_Gameapi_proto_msgTypes[160] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9915,7 +10062,7 @@ func (x *ReqGetCardAlbumReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGetCardAlbumReward.ProtoReflect.Descriptor instead. func (*ReqGetCardAlbumReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{158} + return file_Gameapi_proto_rawDescGZIP(), []int{160} } func (x *ReqGetCardAlbumReward) GetId() int32 { @@ -9944,7 +10091,7 @@ type ResGetCardAlbumReward struct { func (x *ResGetCardAlbumReward) Reset() { *x = ResGetCardAlbumReward{} - mi := &file_Gameapi_proto_msgTypes[159] + mi := &file_Gameapi_proto_msgTypes[161] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9956,7 +10103,7 @@ func (x *ResGetCardAlbumReward) String() string { func (*ResGetCardAlbumReward) ProtoMessage() {} func (x *ResGetCardAlbumReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[159] + mi := &file_Gameapi_proto_msgTypes[161] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9969,7 +10116,7 @@ func (x *ResGetCardAlbumReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGetCardAlbumReward.ProtoReflect.Descriptor instead. func (*ResGetCardAlbumReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{159} + return file_Gameapi_proto_rawDescGZIP(), []int{161} } func (x *ResGetCardAlbumReward) GetId() int32 { @@ -10003,7 +10150,7 @@ type ReqGetAllCardReward struct { func (x *ReqGetAllCardReward) Reset() { *x = ReqGetAllCardReward{} - mi := &file_Gameapi_proto_msgTypes[160] + mi := &file_Gameapi_proto_msgTypes[162] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10015,7 +10162,7 @@ func (x *ReqGetAllCardReward) String() string { func (*ReqGetAllCardReward) ProtoMessage() {} func (x *ReqGetAllCardReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[160] + mi := &file_Gameapi_proto_msgTypes[162] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10028,7 +10175,7 @@ func (x *ReqGetAllCardReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGetAllCardReward.ProtoReflect.Descriptor instead. func (*ReqGetAllCardReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{160} + return file_Gameapi_proto_rawDescGZIP(), []int{162} } func (x *ReqGetAllCardReward) GetActiveID() int32 { @@ -10049,7 +10196,7 @@ type ResGetAllCardReward struct { func (x *ResGetAllCardReward) Reset() { *x = ResGetAllCardReward{} - mi := &file_Gameapi_proto_msgTypes[161] + mi := &file_Gameapi_proto_msgTypes[163] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10061,7 +10208,7 @@ func (x *ResGetAllCardReward) String() string { func (*ResGetAllCardReward) ProtoMessage() {} func (x *ResGetAllCardReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[161] + mi := &file_Gameapi_proto_msgTypes[163] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10074,7 +10221,7 @@ func (x *ResGetAllCardReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGetAllCardReward.ProtoReflect.Descriptor instead. func (*ResGetAllCardReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{161} + return file_Gameapi_proto_rawDescGZIP(), []int{163} } func (x *ResGetAllCardReward) GetDwUin() int32 { @@ -10104,7 +10251,7 @@ type ReqAddCard struct { func (x *ReqAddCard) Reset() { *x = ReqAddCard{} - mi := &file_Gameapi_proto_msgTypes[162] + mi := &file_Gameapi_proto_msgTypes[164] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10116,7 +10263,7 @@ func (x *ReqAddCard) String() string { func (*ReqAddCard) ProtoMessage() {} func (x *ReqAddCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[162] + mi := &file_Gameapi_proto_msgTypes[164] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10129,7 +10276,7 @@ func (x *ReqAddCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAddCard.ProtoReflect.Descriptor instead. func (*ReqAddCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{162} + return file_Gameapi_proto_rawDescGZIP(), []int{164} } func (x *ReqAddCard) GetActiveID() int32 { @@ -10174,7 +10321,7 @@ type ResAddCard struct { func (x *ResAddCard) Reset() { *x = ResAddCard{} - mi := &file_Gameapi_proto_msgTypes[163] + mi := &file_Gameapi_proto_msgTypes[165] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10186,7 +10333,7 @@ func (x *ResAddCard) String() string { func (*ResAddCard) ProtoMessage() {} func (x *ResAddCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[163] + mi := &file_Gameapi_proto_msgTypes[165] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10199,7 +10346,7 @@ func (x *ResAddCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ResAddCard.ProtoReflect.Descriptor instead. func (*ResAddCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{163} + return file_Gameapi_proto_rawDescGZIP(), []int{165} } func (x *ResAddCard) GetActiveID() int32 { @@ -10251,7 +10398,7 @@ type ReqUnpackCard struct { func (x *ReqUnpackCard) Reset() { *x = ReqUnpackCard{} - mi := &file_Gameapi_proto_msgTypes[164] + mi := &file_Gameapi_proto_msgTypes[166] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10263,7 +10410,7 @@ func (x *ReqUnpackCard) String() string { func (*ReqUnpackCard) ProtoMessage() {} func (x *ReqUnpackCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[164] + mi := &file_Gameapi_proto_msgTypes[166] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10276,7 +10423,7 @@ func (x *ReqUnpackCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqUnpackCard.ProtoReflect.Descriptor instead. func (*ReqUnpackCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{164} + return file_Gameapi_proto_rawDescGZIP(), []int{166} } func (x *ReqUnpackCard) GetActiveID() int32 { @@ -10329,7 +10476,7 @@ type ResUnpackCard struct { func (x *ResUnpackCard) Reset() { *x = ResUnpackCard{} - mi := &file_Gameapi_proto_msgTypes[165] + mi := &file_Gameapi_proto_msgTypes[167] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10341,7 +10488,7 @@ func (x *ResUnpackCard) String() string { func (*ResUnpackCard) ProtoMessage() {} func (x *ResUnpackCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[165] + mi := &file_Gameapi_proto_msgTypes[167] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10354,7 +10501,7 @@ func (x *ResUnpackCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ResUnpackCard.ProtoReflect.Descriptor instead. func (*ResUnpackCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{165} + return file_Gameapi_proto_rawDescGZIP(), []int{167} } func (x *ResUnpackCard) GetActiveID() int32 { @@ -10411,7 +10558,7 @@ type ReqAddMasterCard struct { func (x *ReqAddMasterCard) Reset() { *x = ReqAddMasterCard{} - mi := &file_Gameapi_proto_msgTypes[166] + mi := &file_Gameapi_proto_msgTypes[168] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10423,7 +10570,7 @@ func (x *ReqAddMasterCard) String() string { func (*ReqAddMasterCard) ProtoMessage() {} func (x *ReqAddMasterCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[166] + mi := &file_Gameapi_proto_msgTypes[168] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10436,7 +10583,7 @@ func (x *ReqAddMasterCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAddMasterCard.ProtoReflect.Descriptor instead. func (*ReqAddMasterCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{166} + return file_Gameapi_proto_rawDescGZIP(), []int{168} } func (x *ReqAddMasterCard) GetActiveID() int32 { @@ -10473,7 +10620,7 @@ type ResAddMasterCard struct { func (x *ResAddMasterCard) Reset() { *x = ResAddMasterCard{} - mi := &file_Gameapi_proto_msgTypes[167] + mi := &file_Gameapi_proto_msgTypes[169] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10485,7 +10632,7 @@ func (x *ResAddMasterCard) String() string { func (*ResAddMasterCard) ProtoMessage() {} func (x *ResAddMasterCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[167] + mi := &file_Gameapi_proto_msgTypes[169] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10498,7 +10645,7 @@ func (x *ResAddMasterCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ResAddMasterCard.ProtoReflect.Descriptor instead. func (*ResAddMasterCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{167} + return file_Gameapi_proto_rawDescGZIP(), []int{169} } func (x *ResAddMasterCard) GetActiveID() int32 { @@ -10542,7 +10689,7 @@ type ReqUseMasterCard struct { func (x *ReqUseMasterCard) Reset() { *x = ReqUseMasterCard{} - mi := &file_Gameapi_proto_msgTypes[168] + mi := &file_Gameapi_proto_msgTypes[170] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10554,7 +10701,7 @@ func (x *ReqUseMasterCard) String() string { func (*ReqUseMasterCard) ProtoMessage() {} func (x *ReqUseMasterCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[168] + mi := &file_Gameapi_proto_msgTypes[170] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10567,7 +10714,7 @@ func (x *ReqUseMasterCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqUseMasterCard.ProtoReflect.Descriptor instead. func (*ReqUseMasterCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{168} + return file_Gameapi_proto_rawDescGZIP(), []int{170} } func (x *ReqUseMasterCard) GetActiveID() int32 { @@ -10612,7 +10759,7 @@ type ResUseMasterCard struct { func (x *ResUseMasterCard) Reset() { *x = ResUseMasterCard{} - mi := &file_Gameapi_proto_msgTypes[169] + mi := &file_Gameapi_proto_msgTypes[171] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10624,7 +10771,7 @@ func (x *ResUseMasterCard) String() string { func (*ResUseMasterCard) ProtoMessage() {} func (x *ResUseMasterCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[169] + mi := &file_Gameapi_proto_msgTypes[171] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10637,7 +10784,7 @@ func (x *ResUseMasterCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ResUseMasterCard.ProtoReflect.Descriptor instead. func (*ResUseMasterCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{169} + return file_Gameapi_proto_rawDescGZIP(), []int{171} } func (x *ResUseMasterCard) GetActiveID() int32 { @@ -10686,7 +10833,7 @@ type ReqUpdateStickerCount struct { func (x *ReqUpdateStickerCount) Reset() { *x = ReqUpdateStickerCount{} - mi := &file_Gameapi_proto_msgTypes[170] + mi := &file_Gameapi_proto_msgTypes[172] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10698,7 +10845,7 @@ func (x *ReqUpdateStickerCount) String() string { func (*ReqUpdateStickerCount) ProtoMessage() {} func (x *ReqUpdateStickerCount) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[170] + mi := &file_Gameapi_proto_msgTypes[172] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10711,7 +10858,7 @@ func (x *ReqUpdateStickerCount) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqUpdateStickerCount.ProtoReflect.Descriptor instead. func (*ReqUpdateStickerCount) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{170} + return file_Gameapi_proto_rawDescGZIP(), []int{172} } func (x *ReqUpdateStickerCount) GetActiveID() int32 { @@ -10740,7 +10887,7 @@ type ResUpdateStickerCount struct { func (x *ResUpdateStickerCount) Reset() { *x = ResUpdateStickerCount{} - mi := &file_Gameapi_proto_msgTypes[171] + mi := &file_Gameapi_proto_msgTypes[173] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10752,7 +10899,7 @@ func (x *ResUpdateStickerCount) String() string { func (*ResUpdateStickerCount) ProtoMessage() {} func (x *ResUpdateStickerCount) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[171] + mi := &file_Gameapi_proto_msgTypes[173] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10765,7 +10912,7 @@ func (x *ResUpdateStickerCount) ProtoReflect() protoreflect.Message { // Deprecated: Use ResUpdateStickerCount.ProtoReflect.Descriptor instead. func (*ResUpdateStickerCount) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{171} + return file_Gameapi_proto_rawDescGZIP(), []int{173} } func (x *ResUpdateStickerCount) GetActiveID() int32 { @@ -10801,7 +10948,7 @@ type ReqBuyStickerItem struct { func (x *ReqBuyStickerItem) Reset() { *x = ReqBuyStickerItem{} - mi := &file_Gameapi_proto_msgTypes[172] + mi := &file_Gameapi_proto_msgTypes[174] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10813,7 +10960,7 @@ func (x *ReqBuyStickerItem) String() string { func (*ReqBuyStickerItem) ProtoMessage() {} func (x *ReqBuyStickerItem) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[172] + mi := &file_Gameapi_proto_msgTypes[174] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10826,7 +10973,7 @@ func (x *ReqBuyStickerItem) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqBuyStickerItem.ProtoReflect.Descriptor instead. func (*ReqBuyStickerItem) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{172} + return file_Gameapi_proto_rawDescGZIP(), []int{174} } func (x *ReqBuyStickerItem) GetActiveID() int32 { @@ -10863,7 +11010,7 @@ type ResBuyStickerItem struct { func (x *ResBuyStickerItem) Reset() { *x = ResBuyStickerItem{} - mi := &file_Gameapi_proto_msgTypes[173] + mi := &file_Gameapi_proto_msgTypes[175] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10875,7 +11022,7 @@ func (x *ResBuyStickerItem) String() string { func (*ResBuyStickerItem) ProtoMessage() {} func (x *ResBuyStickerItem) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[173] + mi := &file_Gameapi_proto_msgTypes[175] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10888,7 +11035,7 @@ func (x *ResBuyStickerItem) ProtoReflect() protoreflect.Message { // Deprecated: Use ResBuyStickerItem.ProtoReflect.Descriptor instead. func (*ResBuyStickerItem) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{173} + return file_Gameapi_proto_rawDescGZIP(), []int{175} } func (x *ResBuyStickerItem) GetActiveID() int32 { @@ -10937,7 +11084,7 @@ type Notify7DayLoginData struct { func (x *Notify7DayLoginData) Reset() { *x = Notify7DayLoginData{} - mi := &file_Gameapi_proto_msgTypes[174] + mi := &file_Gameapi_proto_msgTypes[176] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10949,7 +11096,7 @@ func (x *Notify7DayLoginData) String() string { func (*Notify7DayLoginData) ProtoMessage() {} func (x *Notify7DayLoginData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[174] + mi := &file_Gameapi_proto_msgTypes[176] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10962,7 +11109,7 @@ func (x *Notify7DayLoginData) ProtoReflect() protoreflect.Message { // Deprecated: Use Notify7DayLoginData.ProtoReflect.Descriptor instead. func (*Notify7DayLoginData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{174} + return file_Gameapi_proto_rawDescGZIP(), []int{176} } func (x *Notify7DayLoginData) GetDwUin() int32 { @@ -11031,7 +11178,7 @@ type Req7DaySignal struct { func (x *Req7DaySignal) Reset() { *x = Req7DaySignal{} - mi := &file_Gameapi_proto_msgTypes[175] + mi := &file_Gameapi_proto_msgTypes[177] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11043,7 +11190,7 @@ func (x *Req7DaySignal) String() string { func (*Req7DaySignal) ProtoMessage() {} func (x *Req7DaySignal) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[175] + mi := &file_Gameapi_proto_msgTypes[177] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11056,7 +11203,7 @@ func (x *Req7DaySignal) ProtoReflect() protoreflect.Message { // Deprecated: Use Req7DaySignal.ProtoReflect.Descriptor instead. func (*Req7DaySignal) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{175} + return file_Gameapi_proto_rawDescGZIP(), []int{177} } func (x *Req7DaySignal) GetGetIndex() int32 { @@ -11080,7 +11227,7 @@ type Res7DaySignal struct { func (x *Res7DaySignal) Reset() { *x = Res7DaySignal{} - mi := &file_Gameapi_proto_msgTypes[176] + mi := &file_Gameapi_proto_msgTypes[178] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11092,7 +11239,7 @@ func (x *Res7DaySignal) String() string { func (*Res7DaySignal) ProtoMessage() {} func (x *Res7DaySignal) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[176] + mi := &file_Gameapi_proto_msgTypes[178] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11105,7 +11252,7 @@ func (x *Res7DaySignal) ProtoReflect() protoreflect.Message { // Deprecated: Use Res7DaySignal.ProtoReflect.Descriptor instead. func (*Res7DaySignal) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{176} + return file_Gameapi_proto_rawDescGZIP(), []int{178} } func (x *Res7DaySignal) GetGetIndex() int32 { @@ -11158,7 +11305,7 @@ type Notify7DayCallbackData struct { func (x *Notify7DayCallbackData) Reset() { *x = Notify7DayCallbackData{} - mi := &file_Gameapi_proto_msgTypes[177] + mi := &file_Gameapi_proto_msgTypes[179] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11170,7 +11317,7 @@ func (x *Notify7DayCallbackData) String() string { func (*Notify7DayCallbackData) ProtoMessage() {} func (x *Notify7DayCallbackData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[177] + mi := &file_Gameapi_proto_msgTypes[179] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11183,7 +11330,7 @@ func (x *Notify7DayCallbackData) ProtoReflect() protoreflect.Message { // Deprecated: Use Notify7DayCallbackData.ProtoReflect.Descriptor instead. func (*Notify7DayCallbackData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{177} + return file_Gameapi_proto_rawDescGZIP(), []int{179} } func (x *Notify7DayCallbackData) GetDwUin() int32 { @@ -11231,7 +11378,7 @@ type Notify7DayCallbackEnd struct { func (x *Notify7DayCallbackEnd) Reset() { *x = Notify7DayCallbackEnd{} - mi := &file_Gameapi_proto_msgTypes[178] + mi := &file_Gameapi_proto_msgTypes[180] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11243,7 +11390,7 @@ func (x *Notify7DayCallbackEnd) String() string { func (*Notify7DayCallbackEnd) ProtoMessage() {} func (x *Notify7DayCallbackEnd) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[178] + mi := &file_Gameapi_proto_msgTypes[180] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11256,7 +11403,7 @@ func (x *Notify7DayCallbackEnd) ProtoReflect() protoreflect.Message { // Deprecated: Use Notify7DayCallbackEnd.ProtoReflect.Descriptor instead. func (*Notify7DayCallbackEnd) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{178} + return file_Gameapi_proto_rawDescGZIP(), []int{180} } func (x *Notify7DayCallbackEnd) GetDwUin() int32 { @@ -11276,7 +11423,7 @@ type Req7DayCallbackSignal struct { func (x *Req7DayCallbackSignal) Reset() { *x = Req7DayCallbackSignal{} - mi := &file_Gameapi_proto_msgTypes[179] + mi := &file_Gameapi_proto_msgTypes[181] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11288,7 +11435,7 @@ func (x *Req7DayCallbackSignal) String() string { func (*Req7DayCallbackSignal) ProtoMessage() {} func (x *Req7DayCallbackSignal) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[179] + mi := &file_Gameapi_proto_msgTypes[181] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11301,7 +11448,7 @@ func (x *Req7DayCallbackSignal) ProtoReflect() protoreflect.Message { // Deprecated: Use Req7DayCallbackSignal.ProtoReflect.Descriptor instead. func (*Req7DayCallbackSignal) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{179} + return file_Gameapi_proto_rawDescGZIP(), []int{181} } func (x *Req7DayCallbackSignal) GetGetIndex() int32 { @@ -11324,7 +11471,7 @@ type Res7DayCallbackSignal struct { func (x *Res7DayCallbackSignal) Reset() { *x = Res7DayCallbackSignal{} - mi := &file_Gameapi_proto_msgTypes[180] + mi := &file_Gameapi_proto_msgTypes[182] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11336,7 +11483,7 @@ func (x *Res7DayCallbackSignal) String() string { func (*Res7DayCallbackSignal) ProtoMessage() {} func (x *Res7DayCallbackSignal) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[180] + mi := &file_Gameapi_proto_msgTypes[182] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11349,7 +11496,7 @@ func (x *Res7DayCallbackSignal) ProtoReflect() protoreflect.Message { // Deprecated: Use Res7DayCallbackSignal.ProtoReflect.Descriptor instead. func (*Res7DayCallbackSignal) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{180} + return file_Gameapi_proto_rawDescGZIP(), []int{182} } func (x *Res7DayCallbackSignal) GetGetIndex() int32 { @@ -11391,7 +11538,7 @@ type ReqKeyValueData struct { func (x *ReqKeyValueData) Reset() { *x = ReqKeyValueData{} - mi := &file_Gameapi_proto_msgTypes[181] + mi := &file_Gameapi_proto_msgTypes[183] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11403,7 +11550,7 @@ func (x *ReqKeyValueData) String() string { func (*ReqKeyValueData) ProtoMessage() {} func (x *ReqKeyValueData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[181] + mi := &file_Gameapi_proto_msgTypes[183] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11416,7 +11563,7 @@ func (x *ReqKeyValueData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqKeyValueData.ProtoReflect.Descriptor instead. func (*ReqKeyValueData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{181} + return file_Gameapi_proto_rawDescGZIP(), []int{183} } func (x *ReqKeyValueData) GetDwUin() int32 { @@ -11436,7 +11583,7 @@ type ResKeyValueData struct { func (x *ResKeyValueData) Reset() { *x = ResKeyValueData{} - mi := &file_Gameapi_proto_msgTypes[182] + mi := &file_Gameapi_proto_msgTypes[184] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11448,7 +11595,7 @@ func (x *ResKeyValueData) String() string { func (*ResKeyValueData) ProtoMessage() {} func (x *ResKeyValueData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[182] + mi := &file_Gameapi_proto_msgTypes[184] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11461,7 +11608,7 @@ func (x *ResKeyValueData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResKeyValueData.ProtoReflect.Descriptor instead. func (*ResKeyValueData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{182} + return file_Gameapi_proto_rawDescGZIP(), []int{184} } func (x *ResKeyValueData) GetKeyValues() map[string]string { @@ -11481,7 +11628,7 @@ type UpdateKeyValueData struct { func (x *UpdateKeyValueData) Reset() { *x = UpdateKeyValueData{} - mi := &file_Gameapi_proto_msgTypes[183] + mi := &file_Gameapi_proto_msgTypes[185] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11493,7 +11640,7 @@ func (x *UpdateKeyValueData) String() string { func (*UpdateKeyValueData) ProtoMessage() {} func (x *UpdateKeyValueData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[183] + mi := &file_Gameapi_proto_msgTypes[185] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11506,7 +11653,7 @@ func (x *UpdateKeyValueData) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateKeyValueData.ProtoReflect.Descriptor instead. func (*UpdateKeyValueData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{183} + return file_Gameapi_proto_rawDescGZIP(), []int{185} } func (x *UpdateKeyValueData) GetKeyValues() map[string]string { @@ -11526,7 +11673,7 @@ type ReqDailyTaskData struct { func (x *ReqDailyTaskData) Reset() { *x = ReqDailyTaskData{} - mi := &file_Gameapi_proto_msgTypes[184] + mi := &file_Gameapi_proto_msgTypes[186] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11538,7 +11685,7 @@ func (x *ReqDailyTaskData) String() string { func (*ReqDailyTaskData) ProtoMessage() {} func (x *ReqDailyTaskData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[184] + mi := &file_Gameapi_proto_msgTypes[186] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11551,7 +11698,7 @@ func (x *ReqDailyTaskData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqDailyTaskData.ProtoReflect.Descriptor instead. func (*ReqDailyTaskData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{184} + return file_Gameapi_proto_rawDescGZIP(), []int{186} } func (x *ReqDailyTaskData) GetDwUin() int32 { @@ -11576,7 +11723,7 @@ type ResDailyTaskData struct { func (x *ResDailyTaskData) Reset() { *x = ResDailyTaskData{} - mi := &file_Gameapi_proto_msgTypes[185] + mi := &file_Gameapi_proto_msgTypes[187] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11588,7 +11735,7 @@ func (x *ResDailyTaskData) String() string { func (*ResDailyTaskData) ProtoMessage() {} func (x *ResDailyTaskData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[185] + mi := &file_Gameapi_proto_msgTypes[187] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11601,7 +11748,7 @@ func (x *ResDailyTaskData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResDailyTaskData.ProtoReflect.Descriptor instead. func (*ResDailyTaskData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{185} + return file_Gameapi_proto_rawDescGZIP(), []int{187} } func (x *ResDailyTaskData) GetDwUin() int32 { @@ -11657,7 +11804,7 @@ type NotifyRenewDailyTask struct { func (x *NotifyRenewDailyTask) Reset() { *x = NotifyRenewDailyTask{} - mi := &file_Gameapi_proto_msgTypes[186] + mi := &file_Gameapi_proto_msgTypes[188] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11669,7 +11816,7 @@ func (x *NotifyRenewDailyTask) String() string { func (*NotifyRenewDailyTask) ProtoMessage() {} func (x *NotifyRenewDailyTask) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[186] + mi := &file_Gameapi_proto_msgTypes[188] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11682,7 +11829,7 @@ func (x *NotifyRenewDailyTask) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyRenewDailyTask.ProtoReflect.Descriptor instead. func (*NotifyRenewDailyTask) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{186} + return file_Gameapi_proto_rawDescGZIP(), []int{188} } func (x *NotifyRenewDailyTask) GetDwUin() int32 { @@ -11713,7 +11860,7 @@ type UpdateDailyTaskData struct { func (x *UpdateDailyTaskData) Reset() { *x = UpdateDailyTaskData{} - mi := &file_Gameapi_proto_msgTypes[187] + mi := &file_Gameapi_proto_msgTypes[189] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11725,7 +11872,7 @@ func (x *UpdateDailyTaskData) String() string { func (*UpdateDailyTaskData) ProtoMessage() {} func (x *UpdateDailyTaskData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[187] + mi := &file_Gameapi_proto_msgTypes[189] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11738,7 +11885,7 @@ func (x *UpdateDailyTaskData) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateDailyTaskData.ProtoReflect.Descriptor instead. func (*UpdateDailyTaskData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{187} + return file_Gameapi_proto_rawDescGZIP(), []int{189} } func (x *UpdateDailyTaskData) GetDwUin() int32 { @@ -11787,7 +11934,7 @@ type NotifyRenewWeekyActive struct { func (x *NotifyRenewWeekyActive) Reset() { *x = NotifyRenewWeekyActive{} - mi := &file_Gameapi_proto_msgTypes[188] + mi := &file_Gameapi_proto_msgTypes[190] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11799,7 +11946,7 @@ func (x *NotifyRenewWeekyActive) String() string { func (*NotifyRenewWeekyActive) ProtoMessage() {} func (x *NotifyRenewWeekyActive) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[188] + mi := &file_Gameapi_proto_msgTypes[190] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11812,7 +11959,7 @@ func (x *NotifyRenewWeekyActive) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyRenewWeekyActive.ProtoReflect.Descriptor instead. func (*NotifyRenewWeekyActive) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{188} + return file_Gameapi_proto_rawDescGZIP(), []int{190} } func (x *NotifyRenewWeekyActive) GetDwUin() int32 { @@ -11843,7 +11990,7 @@ type RenewDailyTaskData struct { func (x *RenewDailyTaskData) Reset() { *x = RenewDailyTaskData{} - mi := &file_Gameapi_proto_msgTypes[189] + mi := &file_Gameapi_proto_msgTypes[191] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11855,7 +12002,7 @@ func (x *RenewDailyTaskData) String() string { func (*RenewDailyTaskData) ProtoMessage() {} func (x *RenewDailyTaskData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[189] + mi := &file_Gameapi_proto_msgTypes[191] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11868,7 +12015,7 @@ func (x *RenewDailyTaskData) ProtoReflect() protoreflect.Message { // Deprecated: Use RenewDailyTaskData.ProtoReflect.Descriptor instead. func (*RenewDailyTaskData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{189} + return file_Gameapi_proto_rawDescGZIP(), []int{191} } func (x *RenewDailyTaskData) GetDwUin() int32 { @@ -11917,7 +12064,7 @@ type RenewWeekyActiveData struct { func (x *RenewWeekyActiveData) Reset() { *x = RenewWeekyActiveData{} - mi := &file_Gameapi_proto_msgTypes[190] + mi := &file_Gameapi_proto_msgTypes[192] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11929,7 +12076,7 @@ func (x *RenewWeekyActiveData) String() string { func (*RenewWeekyActiveData) ProtoMessage() {} func (x *RenewWeekyActiveData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[190] + mi := &file_Gameapi_proto_msgTypes[192] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11942,7 +12089,7 @@ func (x *RenewWeekyActiveData) ProtoReflect() protoreflect.Message { // Deprecated: Use RenewWeekyActiveData.ProtoReflect.Descriptor instead. func (*RenewWeekyActiveData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{190} + return file_Gameapi_proto_rawDescGZIP(), []int{192} } func (x *RenewWeekyActiveData) GetDwUin() int32 { @@ -11969,7 +12116,7 @@ type ReqMileStoneData struct { func (x *ReqMileStoneData) Reset() { *x = ReqMileStoneData{} - mi := &file_Gameapi_proto_msgTypes[191] + mi := &file_Gameapi_proto_msgTypes[193] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11981,7 +12128,7 @@ func (x *ReqMileStoneData) String() string { func (*ReqMileStoneData) ProtoMessage() {} func (x *ReqMileStoneData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[191] + mi := &file_Gameapi_proto_msgTypes[193] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11994,7 +12141,7 @@ func (x *ReqMileStoneData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqMileStoneData.ProtoReflect.Descriptor instead. func (*ReqMileStoneData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{191} + return file_Gameapi_proto_rawDescGZIP(), []int{193} } func (x *ReqMileStoneData) GetDwUin() int32 { @@ -12019,7 +12166,7 @@ type ResMileStoneData struct { func (x *ResMileStoneData) Reset() { *x = ResMileStoneData{} - mi := &file_Gameapi_proto_msgTypes[192] + mi := &file_Gameapi_proto_msgTypes[194] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12031,7 +12178,7 @@ func (x *ResMileStoneData) String() string { func (*ResMileStoneData) ProtoMessage() {} func (x *ResMileStoneData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[192] + mi := &file_Gameapi_proto_msgTypes[194] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12044,7 +12191,7 @@ func (x *ResMileStoneData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResMileStoneData.ProtoReflect.Descriptor instead. func (*ResMileStoneData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{192} + return file_Gameapi_proto_rawDescGZIP(), []int{194} } func (x *ResMileStoneData) GetDwUin() int32 { @@ -12101,7 +12248,7 @@ type NotifyRenewMileStone struct { func (x *NotifyRenewMileStone) Reset() { *x = NotifyRenewMileStone{} - mi := &file_Gameapi_proto_msgTypes[193] + mi := &file_Gameapi_proto_msgTypes[195] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12113,7 +12260,7 @@ func (x *NotifyRenewMileStone) String() string { func (*NotifyRenewMileStone) ProtoMessage() {} func (x *NotifyRenewMileStone) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[193] + mi := &file_Gameapi_proto_msgTypes[195] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12126,7 +12273,7 @@ func (x *NotifyRenewMileStone) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyRenewMileStone.ProtoReflect.Descriptor instead. func (*NotifyRenewMileStone) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{193} + return file_Gameapi_proto_rawDescGZIP(), []int{195} } func (x *NotifyRenewMileStone) GetDwUin() int32 { @@ -12162,7 +12309,7 @@ type UpdateMileStoneData struct { func (x *UpdateMileStoneData) Reset() { *x = UpdateMileStoneData{} - mi := &file_Gameapi_proto_msgTypes[194] + mi := &file_Gameapi_proto_msgTypes[196] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12174,7 +12321,7 @@ func (x *UpdateMileStoneData) String() string { func (*UpdateMileStoneData) ProtoMessage() {} func (x *UpdateMileStoneData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[194] + mi := &file_Gameapi_proto_msgTypes[196] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12187,7 +12334,7 @@ func (x *UpdateMileStoneData) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateMileStoneData.ProtoReflect.Descriptor instead. func (*UpdateMileStoneData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{194} + return file_Gameapi_proto_rawDescGZIP(), []int{196} } func (x *UpdateMileStoneData) GetDwUin() int32 { @@ -12223,7 +12370,7 @@ type RenewMileStoneData struct { func (x *RenewMileStoneData) Reset() { *x = RenewMileStoneData{} - mi := &file_Gameapi_proto_msgTypes[195] + mi := &file_Gameapi_proto_msgTypes[197] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12235,7 +12382,7 @@ func (x *RenewMileStoneData) String() string { func (*RenewMileStoneData) ProtoMessage() {} func (x *RenewMileStoneData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[195] + mi := &file_Gameapi_proto_msgTypes[197] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12248,7 +12395,7 @@ func (x *RenewMileStoneData) ProtoReflect() protoreflect.Message { // Deprecated: Use RenewMileStoneData.ProtoReflect.Descriptor instead. func (*RenewMileStoneData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{195} + return file_Gameapi_proto_rawDescGZIP(), []int{197} } func (x *RenewMileStoneData) GetDwUin() int32 { @@ -12283,7 +12430,7 @@ type ReqPlayerChampshipData struct { func (x *ReqPlayerChampshipData) Reset() { *x = ReqPlayerChampshipData{} - mi := &file_Gameapi_proto_msgTypes[196] + mi := &file_Gameapi_proto_msgTypes[198] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12295,7 +12442,7 @@ func (x *ReqPlayerChampshipData) String() string { func (*ReqPlayerChampshipData) ProtoMessage() {} func (x *ReqPlayerChampshipData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[196] + mi := &file_Gameapi_proto_msgTypes[198] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12308,7 +12455,7 @@ func (x *ReqPlayerChampshipData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayerChampshipData.ProtoReflect.Descriptor instead. func (*ReqPlayerChampshipData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{196} + return file_Gameapi_proto_rawDescGZIP(), []int{198} } func (x *ReqPlayerChampshipData) GetDwUin() int32 { @@ -12340,7 +12487,7 @@ type ResPlayerChampshipData struct { func (x *ResPlayerChampshipData) Reset() { *x = ResPlayerChampshipData{} - mi := &file_Gameapi_proto_msgTypes[197] + mi := &file_Gameapi_proto_msgTypes[199] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12352,7 +12499,7 @@ func (x *ResPlayerChampshipData) String() string { func (*ResPlayerChampshipData) ProtoMessage() {} func (x *ResPlayerChampshipData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[197] + mi := &file_Gameapi_proto_msgTypes[199] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12365,7 +12512,7 @@ func (x *ResPlayerChampshipData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayerChampshipData.ProtoReflect.Descriptor instead. func (*ResPlayerChampshipData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{197} + return file_Gameapi_proto_rawDescGZIP(), []int{199} } func (x *ResPlayerChampshipData) GetDwUin() int32 { @@ -12470,7 +12617,7 @@ type ReqChampshipData struct { func (x *ReqChampshipData) Reset() { *x = ReqChampshipData{} - mi := &file_Gameapi_proto_msgTypes[198] + mi := &file_Gameapi_proto_msgTypes[200] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12482,7 +12629,7 @@ func (x *ReqChampshipData) String() string { func (*ReqChampshipData) ProtoMessage() {} func (x *ReqChampshipData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[198] + mi := &file_Gameapi_proto_msgTypes[200] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12495,7 +12642,7 @@ func (x *ReqChampshipData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqChampshipData.ProtoReflect.Descriptor instead. func (*ReqChampshipData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{198} + return file_Gameapi_proto_rawDescGZIP(), []int{200} } func (x *ReqChampshipData) GetDwUin() int32 { @@ -12531,7 +12678,7 @@ type ChampshipsPlayerInfo struct { func (x *ChampshipsPlayerInfo) Reset() { *x = ChampshipsPlayerInfo{} - mi := &file_Gameapi_proto_msgTypes[199] + mi := &file_Gameapi_proto_msgTypes[201] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12543,7 +12690,7 @@ func (x *ChampshipsPlayerInfo) String() string { func (*ChampshipsPlayerInfo) ProtoMessage() {} func (x *ChampshipsPlayerInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[199] + mi := &file_Gameapi_proto_msgTypes[201] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12556,7 +12703,7 @@ func (x *ChampshipsPlayerInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ChampshipsPlayerInfo.ProtoReflect.Descriptor instead. func (*ChampshipsPlayerInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{199} + return file_Gameapi_proto_rawDescGZIP(), []int{201} } func (x *ChampshipsPlayerInfo) GetDwUin() int32 { @@ -12644,7 +12791,7 @@ type ResChampshipData struct { func (x *ResChampshipData) Reset() { *x = ResChampshipData{} - mi := &file_Gameapi_proto_msgTypes[200] + mi := &file_Gameapi_proto_msgTypes[202] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12656,7 +12803,7 @@ func (x *ResChampshipData) String() string { func (*ResChampshipData) ProtoMessage() {} func (x *ResChampshipData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[200] + mi := &file_Gameapi_proto_msgTypes[202] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12669,7 +12816,7 @@ func (x *ResChampshipData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResChampshipData.ProtoReflect.Descriptor instead. func (*ResChampshipData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{200} + return file_Gameapi_proto_rawDescGZIP(), []int{202} } func (x *ResChampshipData) GetChampshipsGroupID() int32 { @@ -12727,7 +12874,7 @@ type NotifyNewChampshipRank struct { func (x *NotifyNewChampshipRank) Reset() { *x = NotifyNewChampshipRank{} - mi := &file_Gameapi_proto_msgTypes[201] + mi := &file_Gameapi_proto_msgTypes[203] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12739,7 +12886,7 @@ func (x *NotifyNewChampshipRank) String() string { func (*NotifyNewChampshipRank) ProtoMessage() {} func (x *NotifyNewChampshipRank) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[201] + mi := &file_Gameapi_proto_msgTypes[203] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12752,7 +12899,7 @@ func (x *NotifyNewChampshipRank) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyNewChampshipRank.ProtoReflect.Descriptor instead. func (*NotifyNewChampshipRank) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{201} + return file_Gameapi_proto_rawDescGZIP(), []int{203} } func (x *NotifyNewChampshipRank) GetChampshipsGroupID() int32 { @@ -12794,7 +12941,7 @@ type NotifyUpdateChampshipRank struct { func (x *NotifyUpdateChampshipRank) Reset() { *x = NotifyUpdateChampshipRank{} - mi := &file_Gameapi_proto_msgTypes[202] + mi := &file_Gameapi_proto_msgTypes[204] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12806,7 +12953,7 @@ func (x *NotifyUpdateChampshipRank) String() string { func (*NotifyUpdateChampshipRank) ProtoMessage() {} func (x *NotifyUpdateChampshipRank) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[202] + mi := &file_Gameapi_proto_msgTypes[204] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12819,7 +12966,7 @@ func (x *NotifyUpdateChampshipRank) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyUpdateChampshipRank.ProtoReflect.Descriptor instead. func (*NotifyUpdateChampshipRank) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{202} + return file_Gameapi_proto_rawDescGZIP(), []int{204} } func (x *NotifyUpdateChampshipRank) GetChampshipsGroupID() int32 { @@ -12848,7 +12995,7 @@ type NotifyChampshipOpen struct { func (x *NotifyChampshipOpen) Reset() { *x = NotifyChampshipOpen{} - mi := &file_Gameapi_proto_msgTypes[203] + mi := &file_Gameapi_proto_msgTypes[205] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12860,7 +13007,7 @@ func (x *NotifyChampshipOpen) String() string { func (*NotifyChampshipOpen) ProtoMessage() {} func (x *NotifyChampshipOpen) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[203] + mi := &file_Gameapi_proto_msgTypes[205] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12873,7 +13020,7 @@ func (x *NotifyChampshipOpen) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyChampshipOpen.ProtoReflect.Descriptor instead. func (*NotifyChampshipOpen) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{203} + return file_Gameapi_proto_rawDescGZIP(), []int{205} } func (x *NotifyChampshipOpen) GetCurChampshipsId() int32 { @@ -12907,7 +13054,7 @@ type NotifyChampshipClose struct { func (x *NotifyChampshipClose) Reset() { *x = NotifyChampshipClose{} - mi := &file_Gameapi_proto_msgTypes[204] + mi := &file_Gameapi_proto_msgTypes[206] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12919,7 +13066,7 @@ func (x *NotifyChampshipClose) String() string { func (*NotifyChampshipClose) ProtoMessage() {} func (x *NotifyChampshipClose) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[204] + mi := &file_Gameapi_proto_msgTypes[206] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12932,7 +13079,7 @@ func (x *NotifyChampshipClose) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyChampshipClose.ProtoReflect.Descriptor instead. func (*NotifyChampshipClose) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{204} + return file_Gameapi_proto_rawDescGZIP(), []int{206} } func (x *NotifyChampshipClose) GetCurChampshipsId() int32 { @@ -12952,7 +13099,7 @@ type NotifyChampshipTimesOpen struct { func (x *NotifyChampshipTimesOpen) Reset() { *x = NotifyChampshipTimesOpen{} - mi := &file_Gameapi_proto_msgTypes[205] + mi := &file_Gameapi_proto_msgTypes[207] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12964,7 +13111,7 @@ func (x *NotifyChampshipTimesOpen) String() string { func (*NotifyChampshipTimesOpen) ProtoMessage() {} func (x *NotifyChampshipTimesOpen) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[205] + mi := &file_Gameapi_proto_msgTypes[207] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12977,7 +13124,7 @@ func (x *NotifyChampshipTimesOpen) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyChampshipTimesOpen.ProtoReflect.Descriptor instead. func (*NotifyChampshipTimesOpen) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{205} + return file_Gameapi_proto_rawDescGZIP(), []int{207} } func (x *NotifyChampshipTimesOpen) GetCurChampshipsId() int32 { @@ -12997,7 +13144,7 @@ type NotifyChampshipTimesClose struct { func (x *NotifyChampshipTimesClose) Reset() { *x = NotifyChampshipTimesClose{} - mi := &file_Gameapi_proto_msgTypes[206] + mi := &file_Gameapi_proto_msgTypes[208] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13009,7 +13156,7 @@ func (x *NotifyChampshipTimesClose) String() string { func (*NotifyChampshipTimesClose) ProtoMessage() {} func (x *NotifyChampshipTimesClose) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[206] + mi := &file_Gameapi_proto_msgTypes[208] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13022,7 +13169,7 @@ func (x *NotifyChampshipTimesClose) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyChampshipTimesClose.ProtoReflect.Descriptor instead. func (*NotifyChampshipTimesClose) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{206} + return file_Gameapi_proto_rawDescGZIP(), []int{208} } func (x *NotifyChampshipTimesClose) GetCurChampshipsId() int32 { @@ -13042,7 +13189,7 @@ type NotifyChampshipSettleOpen struct { func (x *NotifyChampshipSettleOpen) Reset() { *x = NotifyChampshipSettleOpen{} - mi := &file_Gameapi_proto_msgTypes[207] + mi := &file_Gameapi_proto_msgTypes[209] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13054,7 +13201,7 @@ func (x *NotifyChampshipSettleOpen) String() string { func (*NotifyChampshipSettleOpen) ProtoMessage() {} func (x *NotifyChampshipSettleOpen) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[207] + mi := &file_Gameapi_proto_msgTypes[209] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13067,7 +13214,7 @@ func (x *NotifyChampshipSettleOpen) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyChampshipSettleOpen.ProtoReflect.Descriptor instead. func (*NotifyChampshipSettleOpen) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{207} + return file_Gameapi_proto_rawDescGZIP(), []int{209} } func (x *NotifyChampshipSettleOpen) GetLastChampshipsId() int32 { @@ -13087,7 +13234,7 @@ type NotifyChampshipSettleClose struct { func (x *NotifyChampshipSettleClose) Reset() { *x = NotifyChampshipSettleClose{} - mi := &file_Gameapi_proto_msgTypes[208] + mi := &file_Gameapi_proto_msgTypes[210] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13099,7 +13246,7 @@ func (x *NotifyChampshipSettleClose) String() string { func (*NotifyChampshipSettleClose) ProtoMessage() {} func (x *NotifyChampshipSettleClose) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[208] + mi := &file_Gameapi_proto_msgTypes[210] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13112,7 +13259,7 @@ func (x *NotifyChampshipSettleClose) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyChampshipSettleClose.ProtoReflect.Descriptor instead. func (*NotifyChampshipSettleClose) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{208} + return file_Gameapi_proto_rawDescGZIP(), []int{210} } func (x *NotifyChampshipSettleClose) GetLastChampshipsId() int32 { @@ -13133,7 +13280,7 @@ type ReqChampshipAddScore struct { func (x *ReqChampshipAddScore) Reset() { *x = ReqChampshipAddScore{} - mi := &file_Gameapi_proto_msgTypes[209] + mi := &file_Gameapi_proto_msgTypes[211] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13145,7 +13292,7 @@ func (x *ReqChampshipAddScore) String() string { func (*ReqChampshipAddScore) ProtoMessage() {} func (x *ReqChampshipAddScore) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[209] + mi := &file_Gameapi_proto_msgTypes[211] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13158,7 +13305,7 @@ func (x *ReqChampshipAddScore) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqChampshipAddScore.ProtoReflect.Descriptor instead. func (*ReqChampshipAddScore) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{209} + return file_Gameapi_proto_rawDescGZIP(), []int{211} } func (x *ReqChampshipAddScore) GetGroupId() int32 { @@ -13188,7 +13335,7 @@ type ResChampshipAddScore struct { func (x *ResChampshipAddScore) Reset() { *x = ResChampshipAddScore{} - mi := &file_Gameapi_proto_msgTypes[210] + mi := &file_Gameapi_proto_msgTypes[212] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13200,7 +13347,7 @@ func (x *ResChampshipAddScore) String() string { func (*ResChampshipAddScore) ProtoMessage() {} func (x *ResChampshipAddScore) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[210] + mi := &file_Gameapi_proto_msgTypes[212] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13213,7 +13360,7 @@ func (x *ResChampshipAddScore) ProtoReflect() protoreflect.Message { // Deprecated: Use ResChampshipAddScore.ProtoReflect.Descriptor instead. func (*ResChampshipAddScore) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{210} + return file_Gameapi_proto_rawDescGZIP(), []int{212} } func (x *ResChampshipAddScore) GetResultCode() int32 { @@ -13255,7 +13402,7 @@ type ReqChampshipAddTime struct { func (x *ReqChampshipAddTime) Reset() { *x = ReqChampshipAddTime{} - mi := &file_Gameapi_proto_msgTypes[211] + mi := &file_Gameapi_proto_msgTypes[213] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13267,7 +13414,7 @@ func (x *ReqChampshipAddTime) String() string { func (*ReqChampshipAddTime) ProtoMessage() {} func (x *ReqChampshipAddTime) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[211] + mi := &file_Gameapi_proto_msgTypes[213] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13280,7 +13427,7 @@ func (x *ReqChampshipAddTime) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqChampshipAddTime.ProtoReflect.Descriptor instead. func (*ReqChampshipAddTime) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{211} + return file_Gameapi_proto_rawDescGZIP(), []int{213} } func (x *ReqChampshipAddTime) GetGroupId() int32 { @@ -13309,7 +13456,7 @@ type ResChampshipAddTime struct { func (x *ResChampshipAddTime) Reset() { *x = ResChampshipAddTime{} - mi := &file_Gameapi_proto_msgTypes[212] + mi := &file_Gameapi_proto_msgTypes[214] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13321,7 +13468,7 @@ func (x *ResChampshipAddTime) String() string { func (*ResChampshipAddTime) ProtoMessage() {} func (x *ResChampshipAddTime) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[212] + mi := &file_Gameapi_proto_msgTypes[214] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13334,7 +13481,7 @@ func (x *ResChampshipAddTime) ProtoReflect() protoreflect.Message { // Deprecated: Use ResChampshipAddTime.ProtoReflect.Descriptor instead. func (*ResChampshipAddTime) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{212} + return file_Gameapi_proto_rawDescGZIP(), []int{214} } func (x *ResChampshipAddTime) GetResultCode() int32 { @@ -13371,7 +13518,7 @@ type PlayerPayItem struct { func (x *PlayerPayItem) Reset() { *x = PlayerPayItem{} - mi := &file_Gameapi_proto_msgTypes[213] + mi := &file_Gameapi_proto_msgTypes[215] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13383,7 +13530,7 @@ func (x *PlayerPayItem) String() string { func (*PlayerPayItem) ProtoMessage() {} func (x *PlayerPayItem) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[213] + mi := &file_Gameapi_proto_msgTypes[215] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13396,7 +13543,7 @@ func (x *PlayerPayItem) ProtoReflect() protoreflect.Message { // Deprecated: Use PlayerPayItem.ProtoReflect.Descriptor instead. func (*PlayerPayItem) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{213} + return file_Gameapi_proto_rawDescGZIP(), []int{215} } func (x *PlayerPayItem) GetPayTime() int32 { @@ -13430,7 +13577,7 @@ type ReqPlayerPayData struct { func (x *ReqPlayerPayData) Reset() { *x = ReqPlayerPayData{} - mi := &file_Gameapi_proto_msgTypes[214] + mi := &file_Gameapi_proto_msgTypes[216] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13442,7 +13589,7 @@ func (x *ReqPlayerPayData) String() string { func (*ReqPlayerPayData) ProtoMessage() {} func (x *ReqPlayerPayData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[214] + mi := &file_Gameapi_proto_msgTypes[216] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13455,7 +13602,7 @@ func (x *ReqPlayerPayData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayerPayData.ProtoReflect.Descriptor instead. func (*ReqPlayerPayData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{214} + return file_Gameapi_proto_rawDescGZIP(), []int{216} } func (x *ReqPlayerPayData) GetDwUin() int32 { @@ -13476,7 +13623,7 @@ type ResPlayerPayData struct { func (x *ResPlayerPayData) Reset() { *x = ResPlayerPayData{} - mi := &file_Gameapi_proto_msgTypes[215] + mi := &file_Gameapi_proto_msgTypes[217] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13488,7 +13635,7 @@ func (x *ResPlayerPayData) String() string { func (*ResPlayerPayData) ProtoMessage() {} func (x *ResPlayerPayData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[215] + mi := &file_Gameapi_proto_msgTypes[217] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13501,7 +13648,7 @@ func (x *ResPlayerPayData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayerPayData.ProtoReflect.Descriptor instead. func (*ResPlayerPayData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{215} + return file_Gameapi_proto_rawDescGZIP(), []int{217} } func (x *ResPlayerPayData) GetPlayerPayData() []*PlayerPayItem { @@ -13528,7 +13675,7 @@ type ReqAddPay struct { func (x *ReqAddPay) Reset() { *x = ReqAddPay{} - mi := &file_Gameapi_proto_msgTypes[216] + mi := &file_Gameapi_proto_msgTypes[218] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13540,7 +13687,7 @@ func (x *ReqAddPay) String() string { func (*ReqAddPay) ProtoMessage() {} func (x *ReqAddPay) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[216] + mi := &file_Gameapi_proto_msgTypes[218] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13553,7 +13700,7 @@ func (x *ReqAddPay) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAddPay.ProtoReflect.Descriptor instead. func (*ReqAddPay) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{216} + return file_Gameapi_proto_rawDescGZIP(), []int{218} } func (x *ReqAddPay) GetAdd() float32 { @@ -13574,7 +13721,7 @@ type ResAddPay struct { func (x *ResAddPay) Reset() { *x = ResAddPay{} - mi := &file_Gameapi_proto_msgTypes[217] + mi := &file_Gameapi_proto_msgTypes[219] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13586,7 +13733,7 @@ func (x *ResAddPay) String() string { func (*ResAddPay) ProtoMessage() {} func (x *ResAddPay) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[217] + mi := &file_Gameapi_proto_msgTypes[219] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13599,7 +13746,7 @@ func (x *ResAddPay) ProtoReflect() protoreflect.Message { // Deprecated: Use ResAddPay.ProtoReflect.Descriptor instead. func (*ResAddPay) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{217} + return file_Gameapi_proto_rawDescGZIP(), []int{219} } func (x *ResAddPay) GetDwUin() int32 { @@ -13626,7 +13773,7 @@ type ReqPlayerSingleData struct { func (x *ReqPlayerSingleData) Reset() { *x = ReqPlayerSingleData{} - mi := &file_Gameapi_proto_msgTypes[218] + mi := &file_Gameapi_proto_msgTypes[220] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13638,7 +13785,7 @@ func (x *ReqPlayerSingleData) String() string { func (*ReqPlayerSingleData) ProtoMessage() {} func (x *ReqPlayerSingleData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[218] + mi := &file_Gameapi_proto_msgTypes[220] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13651,7 +13798,7 @@ func (x *ReqPlayerSingleData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayerSingleData.ProtoReflect.Descriptor instead. func (*ReqPlayerSingleData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{218} + return file_Gameapi_proto_rawDescGZIP(), []int{220} } func (x *ReqPlayerSingleData) GetDwUin() int32 { @@ -13679,7 +13826,7 @@ type ResPlayerSingleData struct { func (x *ResPlayerSingleData) Reset() { *x = ResPlayerSingleData{} - mi := &file_Gameapi_proto_msgTypes[219] + mi := &file_Gameapi_proto_msgTypes[221] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13691,7 +13838,7 @@ func (x *ResPlayerSingleData) String() string { func (*ResPlayerSingleData) ProtoMessage() {} func (x *ResPlayerSingleData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[219] + mi := &file_Gameapi_proto_msgTypes[221] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13704,7 +13851,7 @@ func (x *ResPlayerSingleData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayerSingleData.ProtoReflect.Descriptor instead. func (*ResPlayerSingleData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{219} + return file_Gameapi_proto_rawDescGZIP(), []int{221} } func (x *ResPlayerSingleData) GetNewbiePackBuyID() int32 { @@ -13780,7 +13927,7 @@ type ReqOpenNewbiePack struct { func (x *ReqOpenNewbiePack) Reset() { *x = ReqOpenNewbiePack{} - mi := &file_Gameapi_proto_msgTypes[220] + mi := &file_Gameapi_proto_msgTypes[222] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13792,7 +13939,7 @@ func (x *ReqOpenNewbiePack) String() string { func (*ReqOpenNewbiePack) ProtoMessage() {} func (x *ReqOpenNewbiePack) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[220] + mi := &file_Gameapi_proto_msgTypes[222] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13805,7 +13952,7 @@ func (x *ReqOpenNewbiePack) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqOpenNewbiePack.ProtoReflect.Descriptor instead. func (*ReqOpenNewbiePack) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{220} + return file_Gameapi_proto_rawDescGZIP(), []int{222} } func (x *ReqOpenNewbiePack) GetDwUin() int32 { @@ -13827,7 +13974,7 @@ type ResOpenNewbiePack struct { func (x *ResOpenNewbiePack) Reset() { *x = ResOpenNewbiePack{} - mi := &file_Gameapi_proto_msgTypes[221] + mi := &file_Gameapi_proto_msgTypes[223] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13839,7 +13986,7 @@ func (x *ResOpenNewbiePack) String() string { func (*ResOpenNewbiePack) ProtoMessage() {} func (x *ResOpenNewbiePack) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[221] + mi := &file_Gameapi_proto_msgTypes[223] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13852,7 +13999,7 @@ func (x *ResOpenNewbiePack) ProtoReflect() protoreflect.Message { // Deprecated: Use ResOpenNewbiePack.ProtoReflect.Descriptor instead. func (*ResOpenNewbiePack) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{221} + return file_Gameapi_proto_rawDescGZIP(), []int{223} } func (x *ResOpenNewbiePack) GetResultCode() int32 { @@ -13886,7 +14033,7 @@ type ReqBuyNewbiePack struct { func (x *ReqBuyNewbiePack) Reset() { *x = ReqBuyNewbiePack{} - mi := &file_Gameapi_proto_msgTypes[222] + mi := &file_Gameapi_proto_msgTypes[224] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13898,7 +14045,7 @@ func (x *ReqBuyNewbiePack) String() string { func (*ReqBuyNewbiePack) ProtoMessage() {} func (x *ReqBuyNewbiePack) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[222] + mi := &file_Gameapi_proto_msgTypes[224] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13911,7 +14058,7 @@ func (x *ReqBuyNewbiePack) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqBuyNewbiePack.ProtoReflect.Descriptor instead. func (*ReqBuyNewbiePack) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{222} + return file_Gameapi_proto_rawDescGZIP(), []int{224} } func (x *ReqBuyNewbiePack) GetNewbiePackBuyID() int32 { @@ -13933,7 +14080,7 @@ type ResBuyNewbiePack struct { func (x *ResBuyNewbiePack) Reset() { *x = ResBuyNewbiePack{} - mi := &file_Gameapi_proto_msgTypes[223] + mi := &file_Gameapi_proto_msgTypes[225] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13945,7 +14092,7 @@ func (x *ResBuyNewbiePack) String() string { func (*ResBuyNewbiePack) ProtoMessage() {} func (x *ResBuyNewbiePack) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[223] + mi := &file_Gameapi_proto_msgTypes[225] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13958,7 +14105,7 @@ func (x *ResBuyNewbiePack) ProtoReflect() protoreflect.Message { // Deprecated: Use ResBuyNewbiePack.ProtoReflect.Descriptor instead. func (*ResBuyNewbiePack) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{223} + return file_Gameapi_proto_rawDescGZIP(), []int{225} } func (x *ResBuyNewbiePack) GetNewbiePackBuyID() int32 { @@ -14000,7 +14147,7 @@ type NotifyPlayerSingleData struct { func (x *NotifyPlayerSingleData) Reset() { *x = NotifyPlayerSingleData{} - mi := &file_Gameapi_proto_msgTypes[224] + mi := &file_Gameapi_proto_msgTypes[226] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14012,7 +14159,7 @@ func (x *NotifyPlayerSingleData) String() string { func (*NotifyPlayerSingleData) ProtoMessage() {} func (x *NotifyPlayerSingleData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[224] + mi := &file_Gameapi_proto_msgTypes[226] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14025,7 +14172,7 @@ func (x *NotifyPlayerSingleData) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyPlayerSingleData.ProtoReflect.Descriptor instead. func (*NotifyPlayerSingleData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{224} + return file_Gameapi_proto_rawDescGZIP(), []int{226} } func (x *NotifyPlayerSingleData) GetNewbiePackBuyID() int32 { @@ -14102,7 +14249,7 @@ type ReqAddNoAdCnt struct { func (x *ReqAddNoAdCnt) Reset() { *x = ReqAddNoAdCnt{} - mi := &file_Gameapi_proto_msgTypes[225] + mi := &file_Gameapi_proto_msgTypes[227] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14114,7 +14261,7 @@ func (x *ReqAddNoAdCnt) String() string { func (*ReqAddNoAdCnt) ProtoMessage() {} func (x *ReqAddNoAdCnt) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[225] + mi := &file_Gameapi_proto_msgTypes[227] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14127,7 +14274,7 @@ func (x *ReqAddNoAdCnt) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAddNoAdCnt.ProtoReflect.Descriptor instead. func (*ReqAddNoAdCnt) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{225} + return file_Gameapi_proto_rawDescGZIP(), []int{227} } func (x *ReqAddNoAdCnt) GetDwUin() int32 { @@ -14148,7 +14295,7 @@ type ResAddNoAdCnt struct { func (x *ResAddNoAdCnt) Reset() { *x = ResAddNoAdCnt{} - mi := &file_Gameapi_proto_msgTypes[226] + mi := &file_Gameapi_proto_msgTypes[228] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14160,7 +14307,7 @@ func (x *ResAddNoAdCnt) String() string { func (*ResAddNoAdCnt) ProtoMessage() {} func (x *ResAddNoAdCnt) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[226] + mi := &file_Gameapi_proto_msgTypes[228] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14173,7 +14320,7 @@ func (x *ResAddNoAdCnt) ProtoReflect() protoreflect.Message { // Deprecated: Use ResAddNoAdCnt.ProtoReflect.Descriptor instead. func (*ResAddNoAdCnt) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{226} + return file_Gameapi_proto_rawDescGZIP(), []int{228} } func (x *ResAddNoAdCnt) GetResultCode() int32 { @@ -14201,7 +14348,7 @@ type ReqAddWatchAdCnt struct { func (x *ReqAddWatchAdCnt) Reset() { *x = ReqAddWatchAdCnt{} - mi := &file_Gameapi_proto_msgTypes[227] + mi := &file_Gameapi_proto_msgTypes[229] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14213,7 +14360,7 @@ func (x *ReqAddWatchAdCnt) String() string { func (*ReqAddWatchAdCnt) ProtoMessage() {} func (x *ReqAddWatchAdCnt) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[227] + mi := &file_Gameapi_proto_msgTypes[229] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14226,7 +14373,7 @@ func (x *ReqAddWatchAdCnt) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAddWatchAdCnt.ProtoReflect.Descriptor instead. func (*ReqAddWatchAdCnt) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{227} + return file_Gameapi_proto_rawDescGZIP(), []int{229} } func (x *ReqAddWatchAdCnt) GetDwUin() int32 { @@ -14247,7 +14394,7 @@ type ResAddWatchAdCnt struct { func (x *ResAddWatchAdCnt) Reset() { *x = ResAddWatchAdCnt{} - mi := &file_Gameapi_proto_msgTypes[228] + mi := &file_Gameapi_proto_msgTypes[230] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14259,7 +14406,7 @@ func (x *ResAddWatchAdCnt) String() string { func (*ResAddWatchAdCnt) ProtoMessage() {} func (x *ResAddWatchAdCnt) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[228] + mi := &file_Gameapi_proto_msgTypes[230] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14272,7 +14419,7 @@ func (x *ResAddWatchAdCnt) ProtoReflect() protoreflect.Message { // Deprecated: Use ResAddWatchAdCnt.ProtoReflect.Descriptor instead. func (*ResAddWatchAdCnt) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{228} + return file_Gameapi_proto_rawDescGZIP(), []int{230} } func (x *ResAddWatchAdCnt) GetResultCode() int32 { @@ -14300,7 +14447,7 @@ type ReqAdPackData struct { func (x *ReqAdPackData) Reset() { *x = ReqAdPackData{} - mi := &file_Gameapi_proto_msgTypes[229] + mi := &file_Gameapi_proto_msgTypes[231] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14312,7 +14459,7 @@ func (x *ReqAdPackData) String() string { func (*ReqAdPackData) ProtoMessage() {} func (x *ReqAdPackData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[229] + mi := &file_Gameapi_proto_msgTypes[231] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14325,7 +14472,7 @@ func (x *ReqAdPackData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAdPackData.ProtoReflect.Descriptor instead. func (*ReqAdPackData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{229} + return file_Gameapi_proto_rawDescGZIP(), []int{231} } func (x *ReqAdPackData) GetDwUin() int32 { @@ -14349,7 +14496,7 @@ type ResAdPackData struct { func (x *ResAdPackData) Reset() { *x = ResAdPackData{} - mi := &file_Gameapi_proto_msgTypes[230] + mi := &file_Gameapi_proto_msgTypes[232] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14361,7 +14508,7 @@ func (x *ResAdPackData) String() string { func (*ResAdPackData) ProtoMessage() {} func (x *ResAdPackData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[230] + mi := &file_Gameapi_proto_msgTypes[232] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14374,7 +14521,7 @@ func (x *ResAdPackData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResAdPackData.ProtoReflect.Descriptor instead. func (*ResAdPackData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{230} + return file_Gameapi_proto_rawDescGZIP(), []int{232} } func (x *ResAdPackData) GetDwUin() int32 { @@ -14426,7 +14573,7 @@ type NotifyAdPackData struct { func (x *NotifyAdPackData) Reset() { *x = NotifyAdPackData{} - mi := &file_Gameapi_proto_msgTypes[231] + mi := &file_Gameapi_proto_msgTypes[233] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14438,7 +14585,7 @@ func (x *NotifyAdPackData) String() string { func (*NotifyAdPackData) ProtoMessage() {} func (x *NotifyAdPackData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[231] + mi := &file_Gameapi_proto_msgTypes[233] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14451,7 +14598,7 @@ func (x *NotifyAdPackData) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyAdPackData.ProtoReflect.Descriptor instead. func (*NotifyAdPackData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{231} + return file_Gameapi_proto_rawDescGZIP(), []int{233} } func (x *NotifyAdPackData) GetDwUin() int32 { @@ -14499,7 +14646,7 @@ type ReqWatchAdPack struct { func (x *ReqWatchAdPack) Reset() { *x = ReqWatchAdPack{} - mi := &file_Gameapi_proto_msgTypes[232] + mi := &file_Gameapi_proto_msgTypes[234] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14511,7 +14658,7 @@ func (x *ReqWatchAdPack) String() string { func (*ReqWatchAdPack) ProtoMessage() {} func (x *ReqWatchAdPack) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[232] + mi := &file_Gameapi_proto_msgTypes[234] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14524,7 +14671,7 @@ func (x *ReqWatchAdPack) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqWatchAdPack.ProtoReflect.Descriptor instead. func (*ReqWatchAdPack) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{232} + return file_Gameapi_proto_rawDescGZIP(), []int{234} } func (x *ReqWatchAdPack) GetID() int32 { @@ -14549,7 +14696,7 @@ type ResWatchAdPack struct { func (x *ResWatchAdPack) Reset() { *x = ResWatchAdPack{} - mi := &file_Gameapi_proto_msgTypes[233] + mi := &file_Gameapi_proto_msgTypes[235] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14561,7 +14708,7 @@ func (x *ResWatchAdPack) String() string { func (*ResWatchAdPack) ProtoMessage() {} func (x *ResWatchAdPack) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[233] + mi := &file_Gameapi_proto_msgTypes[235] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14574,7 +14721,7 @@ func (x *ResWatchAdPack) ProtoReflect() protoreflect.Message { // Deprecated: Use ResWatchAdPack.ProtoReflect.Descriptor instead. func (*ResWatchAdPack) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{233} + return file_Gameapi_proto_rawDescGZIP(), []int{235} } func (x *ResWatchAdPack) GetID() int32 { @@ -14628,7 +14775,7 @@ type ForceKickOut struct { func (x *ForceKickOut) Reset() { *x = ForceKickOut{} - mi := &file_Gameapi_proto_msgTypes[234] + mi := &file_Gameapi_proto_msgTypes[236] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14640,7 +14787,7 @@ func (x *ForceKickOut) String() string { func (*ForceKickOut) ProtoMessage() {} func (x *ForceKickOut) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[234] + mi := &file_Gameapi_proto_msgTypes[236] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14653,7 +14800,7 @@ func (x *ForceKickOut) ProtoReflect() protoreflect.Message { // Deprecated: Use ForceKickOut.ProtoReflect.Descriptor instead. func (*ForceKickOut) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{234} + return file_Gameapi_proto_rawDescGZIP(), []int{236} } // ////////// @@ -14667,7 +14814,7 @@ type ReqLimitData struct { func (x *ReqLimitData) Reset() { *x = ReqLimitData{} - mi := &file_Gameapi_proto_msgTypes[235] + mi := &file_Gameapi_proto_msgTypes[237] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14679,7 +14826,7 @@ func (x *ReqLimitData) String() string { func (*ReqLimitData) ProtoMessage() {} func (x *ReqLimitData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[235] + mi := &file_Gameapi_proto_msgTypes[237] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14692,7 +14839,7 @@ func (x *ReqLimitData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqLimitData.ProtoReflect.Descriptor instead. func (*ReqLimitData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{235} + return file_Gameapi_proto_rawDescGZIP(), []int{237} } func (x *ReqLimitData) GetID() int32 { @@ -14716,7 +14863,7 @@ type ResLimitData struct { func (x *ResLimitData) Reset() { *x = ResLimitData{} - mi := &file_Gameapi_proto_msgTypes[236] + mi := &file_Gameapi_proto_msgTypes[238] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14728,7 +14875,7 @@ func (x *ResLimitData) String() string { func (*ResLimitData) ProtoMessage() {} func (x *ResLimitData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[236] + mi := &file_Gameapi_proto_msgTypes[238] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14741,7 +14888,7 @@ func (x *ResLimitData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResLimitData.ProtoReflect.Descriptor instead. func (*ResLimitData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{236} + return file_Gameapi_proto_rawDescGZIP(), []int{238} } func (x *ResLimitData) GetID() int32 { @@ -14793,7 +14940,7 @@ type NotifyLimitData struct { func (x *NotifyLimitData) Reset() { *x = NotifyLimitData{} - mi := &file_Gameapi_proto_msgTypes[237] + mi := &file_Gameapi_proto_msgTypes[239] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14805,7 +14952,7 @@ func (x *NotifyLimitData) String() string { func (*NotifyLimitData) ProtoMessage() {} func (x *NotifyLimitData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[237] + mi := &file_Gameapi_proto_msgTypes[239] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14818,7 +14965,7 @@ func (x *NotifyLimitData) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyLimitData.ProtoReflect.Descriptor instead. func (*NotifyLimitData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{237} + return file_Gameapi_proto_rawDescGZIP(), []int{239} } func (x *NotifyLimitData) GetID() int32 { @@ -14867,7 +15014,7 @@ type ReqAddLimitTime struct { func (x *ReqAddLimitTime) Reset() { *x = ReqAddLimitTime{} - mi := &file_Gameapi_proto_msgTypes[238] + mi := &file_Gameapi_proto_msgTypes[240] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14879,7 +15026,7 @@ func (x *ReqAddLimitTime) String() string { func (*ReqAddLimitTime) ProtoMessage() {} func (x *ReqAddLimitTime) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[238] + mi := &file_Gameapi_proto_msgTypes[240] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14892,7 +15039,7 @@ func (x *ReqAddLimitTime) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAddLimitTime.ProtoReflect.Descriptor instead. func (*ReqAddLimitTime) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{238} + return file_Gameapi_proto_rawDescGZIP(), []int{240} } func (x *ReqAddLimitTime) GetID() int32 { @@ -14923,7 +15070,7 @@ type ResAddLimitTime struct { func (x *ResAddLimitTime) Reset() { *x = ResAddLimitTime{} - mi := &file_Gameapi_proto_msgTypes[239] + mi := &file_Gameapi_proto_msgTypes[241] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14935,7 +15082,7 @@ func (x *ResAddLimitTime) String() string { func (*ResAddLimitTime) ProtoMessage() {} func (x *ResAddLimitTime) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[239] + mi := &file_Gameapi_proto_msgTypes[241] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14948,7 +15095,7 @@ func (x *ResAddLimitTime) ProtoReflect() protoreflect.Message { // Deprecated: Use ResAddLimitTime.ProtoReflect.Descriptor instead. func (*ResAddLimitTime) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{239} + return file_Gameapi_proto_rawDescGZIP(), []int{241} } func (x *ResAddLimitTime) GetID() int32 { @@ -14996,7 +15143,7 @@ type ReqGenSuperOrder struct { func (x *ReqGenSuperOrder) Reset() { *x = ReqGenSuperOrder{} - mi := &file_Gameapi_proto_msgTypes[240] + mi := &file_Gameapi_proto_msgTypes[242] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15008,7 +15155,7 @@ func (x *ReqGenSuperOrder) String() string { func (*ReqGenSuperOrder) ProtoMessage() {} func (x *ReqGenSuperOrder) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[240] + mi := &file_Gameapi_proto_msgTypes[242] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15021,7 +15168,7 @@ func (x *ReqGenSuperOrder) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGenSuperOrder.ProtoReflect.Descriptor instead. func (*ReqGenSuperOrder) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{240} + return file_Gameapi_proto_rawDescGZIP(), []int{242} } func (x *ReqGenSuperOrder) GetIdList() []int32 { @@ -15042,7 +15189,7 @@ type ResGenSuperOrder struct { func (x *ResGenSuperOrder) Reset() { *x = ResGenSuperOrder{} - mi := &file_Gameapi_proto_msgTypes[241] + mi := &file_Gameapi_proto_msgTypes[243] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15054,7 +15201,7 @@ func (x *ResGenSuperOrder) String() string { func (*ResGenSuperOrder) ProtoMessage() {} func (x *ResGenSuperOrder) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[241] + mi := &file_Gameapi_proto_msgTypes[243] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15067,7 +15214,7 @@ func (x *ResGenSuperOrder) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGenSuperOrder.ProtoReflect.Descriptor instead. func (*ResGenSuperOrder) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{241} + return file_Gameapi_proto_rawDescGZIP(), []int{243} } func (x *ResGenSuperOrder) GetParamStr() string { @@ -15094,7 +15241,7 @@ type ReqEndSuperOrder struct { func (x *ReqEndSuperOrder) Reset() { *x = ReqEndSuperOrder{} - mi := &file_Gameapi_proto_msgTypes[242] + mi := &file_Gameapi_proto_msgTypes[244] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15106,7 +15253,7 @@ func (x *ReqEndSuperOrder) String() string { func (*ReqEndSuperOrder) ProtoMessage() {} func (x *ReqEndSuperOrder) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[242] + mi := &file_Gameapi_proto_msgTypes[244] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15119,7 +15266,7 @@ func (x *ReqEndSuperOrder) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqEndSuperOrder.ProtoReflect.Descriptor instead. func (*ReqEndSuperOrder) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{242} + return file_Gameapi_proto_rawDescGZIP(), []int{244} } func (x *ReqEndSuperOrder) GetDwUin() int32 { @@ -15140,7 +15287,7 @@ type ResEndSuperOrder struct { func (x *ResEndSuperOrder) Reset() { *x = ResEndSuperOrder{} - mi := &file_Gameapi_proto_msgTypes[243] + mi := &file_Gameapi_proto_msgTypes[245] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15152,7 +15299,7 @@ func (x *ResEndSuperOrder) String() string { func (*ResEndSuperOrder) ProtoMessage() {} func (x *ResEndSuperOrder) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[243] + mi := &file_Gameapi_proto_msgTypes[245] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15165,7 +15312,7 @@ func (x *ResEndSuperOrder) ProtoReflect() protoreflect.Message { // Deprecated: Use ResEndSuperOrder.ProtoReflect.Descriptor instead. func (*ResEndSuperOrder) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{243} + return file_Gameapi_proto_rawDescGZIP(), []int{245} } func (x *ResEndSuperOrder) GetParamStr() string { @@ -15192,7 +15339,7 @@ type NotifyLimitCardSwapData struct { func (x *NotifyLimitCardSwapData) Reset() { *x = NotifyLimitCardSwapData{} - mi := &file_Gameapi_proto_msgTypes[244] + mi := &file_Gameapi_proto_msgTypes[246] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15204,7 +15351,7 @@ func (x *NotifyLimitCardSwapData) String() string { func (*NotifyLimitCardSwapData) ProtoMessage() {} func (x *NotifyLimitCardSwapData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[244] + mi := &file_Gameapi_proto_msgTypes[246] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15217,7 +15364,7 @@ func (x *NotifyLimitCardSwapData) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyLimitCardSwapData.ProtoReflect.Descriptor instead. func (*NotifyLimitCardSwapData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{244} + return file_Gameapi_proto_rawDescGZIP(), []int{246} } func (x *NotifyLimitCardSwapData) GetCurTime() int32 { @@ -15238,7 +15385,7 @@ type ReqCompleteDoubleHit struct { func (x *ReqCompleteDoubleHit) Reset() { *x = ReqCompleteDoubleHit{} - mi := &file_Gameapi_proto_msgTypes[245] + mi := &file_Gameapi_proto_msgTypes[247] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15250,7 +15397,7 @@ func (x *ReqCompleteDoubleHit) String() string { func (*ReqCompleteDoubleHit) ProtoMessage() {} func (x *ReqCompleteDoubleHit) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[245] + mi := &file_Gameapi_proto_msgTypes[247] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15263,7 +15410,7 @@ func (x *ReqCompleteDoubleHit) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCompleteDoubleHit.ProtoReflect.Descriptor instead. func (*ReqCompleteDoubleHit) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{245} + return file_Gameapi_proto_rawDescGZIP(), []int{247} } func (x *ReqCompleteDoubleHit) GetDwUin() int32 { @@ -15284,7 +15431,7 @@ type ResCompleteDoubleHit struct { func (x *ResCompleteDoubleHit) Reset() { *x = ResCompleteDoubleHit{} - mi := &file_Gameapi_proto_msgTypes[246] + mi := &file_Gameapi_proto_msgTypes[248] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15296,7 +15443,7 @@ func (x *ResCompleteDoubleHit) String() string { func (*ResCompleteDoubleHit) ProtoMessage() {} func (x *ResCompleteDoubleHit) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[246] + mi := &file_Gameapi_proto_msgTypes[248] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15309,7 +15456,7 @@ func (x *ResCompleteDoubleHit) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCompleteDoubleHit.ProtoReflect.Descriptor instead. func (*ResCompleteDoubleHit) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{246} + return file_Gameapi_proto_rawDescGZIP(), []int{248} } func (x *ResCompleteDoubleHit) GetCurCnt() int32 { @@ -15337,7 +15484,7 @@ type ReqTagThief struct { func (x *ReqTagThief) Reset() { *x = ReqTagThief{} - mi := &file_Gameapi_proto_msgTypes[247] + mi := &file_Gameapi_proto_msgTypes[249] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15349,7 +15496,7 @@ func (x *ReqTagThief) String() string { func (*ReqTagThief) ProtoMessage() {} func (x *ReqTagThief) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[247] + mi := &file_Gameapi_proto_msgTypes[249] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15362,7 +15509,7 @@ func (x *ReqTagThief) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqTagThief.ProtoReflect.Descriptor instead. func (*ReqTagThief) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{247} + return file_Gameapi_proto_rawDescGZIP(), []int{249} } func (x *ReqTagThief) GetDwUin() int32 { @@ -15382,7 +15529,7 @@ type ResTagThief struct { func (x *ResTagThief) Reset() { *x = ResTagThief{} - mi := &file_Gameapi_proto_msgTypes[248] + mi := &file_Gameapi_proto_msgTypes[250] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15394,7 +15541,7 @@ func (x *ResTagThief) String() string { func (*ResTagThief) ProtoMessage() {} func (x *ResTagThief) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[248] + mi := &file_Gameapi_proto_msgTypes[250] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15407,7 +15554,7 @@ func (x *ResTagThief) ProtoReflect() protoreflect.Message { // Deprecated: Use ResTagThief.ProtoReflect.Descriptor instead. func (*ResTagThief) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{248} + return file_Gameapi_proto_rawDescGZIP(), []int{250} } func (x *ResTagThief) GetParamStr() string { @@ -15427,7 +15574,7 @@ type NotifyRenewTagThief struct { func (x *NotifyRenewTagThief) Reset() { *x = NotifyRenewTagThief{} - mi := &file_Gameapi_proto_msgTypes[249] + mi := &file_Gameapi_proto_msgTypes[251] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15439,7 +15586,7 @@ func (x *NotifyRenewTagThief) String() string { func (*NotifyRenewTagThief) ProtoMessage() {} func (x *NotifyRenewTagThief) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[249] + mi := &file_Gameapi_proto_msgTypes[251] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15452,7 +15599,7 @@ func (x *NotifyRenewTagThief) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyRenewTagThief.ProtoReflect.Descriptor instead. func (*NotifyRenewTagThief) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{249} + return file_Gameapi_proto_rawDescGZIP(), []int{251} } func (x *NotifyRenewTagThief) GetParamStr() string { @@ -15473,7 +15620,7 @@ type ReqPlayerProfileData struct { func (x *ReqPlayerProfileData) Reset() { *x = ReqPlayerProfileData{} - mi := &file_Gameapi_proto_msgTypes[250] + mi := &file_Gameapi_proto_msgTypes[252] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15485,7 +15632,7 @@ func (x *ReqPlayerProfileData) String() string { func (*ReqPlayerProfileData) ProtoMessage() {} func (x *ReqPlayerProfileData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[250] + mi := &file_Gameapi_proto_msgTypes[252] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15498,7 +15645,7 @@ func (x *ReqPlayerProfileData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayerProfileData.ProtoReflect.Descriptor instead. func (*ReqPlayerProfileData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{250} + return file_Gameapi_proto_rawDescGZIP(), []int{252} } func (x *ReqPlayerProfileData) GetDwUin() int32 { @@ -15526,7 +15673,7 @@ type ResPlayerProfileData struct { func (x *ResPlayerProfileData) Reset() { *x = ResPlayerProfileData{} - mi := &file_Gameapi_proto_msgTypes[251] + mi := &file_Gameapi_proto_msgTypes[253] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15538,7 +15685,7 @@ func (x *ResPlayerProfileData) String() string { func (*ResPlayerProfileData) ProtoMessage() {} func (x *ResPlayerProfileData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[251] + mi := &file_Gameapi_proto_msgTypes[253] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15551,7 +15698,7 @@ func (x *ResPlayerProfileData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayerProfileData.ProtoReflect.Descriptor instead. func (*ResPlayerProfileData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{251} + return file_Gameapi_proto_rawDescGZIP(), []int{253} } func (x *ResPlayerProfileData) GetDwUin() int32 { @@ -15628,7 +15775,7 @@ type ReqPlayerBriefProfileData struct { func (x *ReqPlayerBriefProfileData) Reset() { *x = ReqPlayerBriefProfileData{} - mi := &file_Gameapi_proto_msgTypes[252] + mi := &file_Gameapi_proto_msgTypes[254] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15640,7 +15787,7 @@ func (x *ReqPlayerBriefProfileData) String() string { func (*ReqPlayerBriefProfileData) ProtoMessage() {} func (x *ReqPlayerBriefProfileData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[252] + mi := &file_Gameapi_proto_msgTypes[254] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15653,7 +15800,7 @@ func (x *ReqPlayerBriefProfileData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayerBriefProfileData.ProtoReflect.Descriptor instead. func (*ReqPlayerBriefProfileData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{252} + return file_Gameapi_proto_rawDescGZIP(), []int{254} } func (x *ReqPlayerBriefProfileData) GetDwUin() int32 { @@ -15679,7 +15826,7 @@ type ResPlayerBriefProfileData struct { func (x *ResPlayerBriefProfileData) Reset() { *x = ResPlayerBriefProfileData{} - mi := &file_Gameapi_proto_msgTypes[253] + mi := &file_Gameapi_proto_msgTypes[255] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15691,7 +15838,7 @@ func (x *ResPlayerBriefProfileData) String() string { func (*ResPlayerBriefProfileData) ProtoMessage() {} func (x *ResPlayerBriefProfileData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[253] + mi := &file_Gameapi_proto_msgTypes[255] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15704,7 +15851,7 @@ func (x *ResPlayerBriefProfileData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayerBriefProfileData.ProtoReflect.Descriptor instead. func (*ResPlayerBriefProfileData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{253} + return file_Gameapi_proto_rawDescGZIP(), []int{255} } func (x *ResPlayerBriefProfileData) GetDwUin() int32 { @@ -15768,7 +15915,7 @@ type ReqUpdatePlayerProfile struct { func (x *ReqUpdatePlayerProfile) Reset() { *x = ReqUpdatePlayerProfile{} - mi := &file_Gameapi_proto_msgTypes[254] + mi := &file_Gameapi_proto_msgTypes[256] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15780,7 +15927,7 @@ func (x *ReqUpdatePlayerProfile) String() string { func (*ReqUpdatePlayerProfile) ProtoMessage() {} func (x *ReqUpdatePlayerProfile) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[254] + mi := &file_Gameapi_proto_msgTypes[256] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15793,7 +15940,7 @@ func (x *ReqUpdatePlayerProfile) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqUpdatePlayerProfile.ProtoReflect.Descriptor instead. func (*ReqUpdatePlayerProfile) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{254} + return file_Gameapi_proto_rawDescGZIP(), []int{256} } func (x *ReqUpdatePlayerProfile) GetDwUin() int32 { @@ -15830,7 +15977,7 @@ type ResUpdatePlayerProfile struct { func (x *ResUpdatePlayerProfile) Reset() { *x = ResUpdatePlayerProfile{} - mi := &file_Gameapi_proto_msgTypes[255] + mi := &file_Gameapi_proto_msgTypes[257] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15842,7 +15989,7 @@ func (x *ResUpdatePlayerProfile) String() string { func (*ResUpdatePlayerProfile) ProtoMessage() {} func (x *ResUpdatePlayerProfile) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[255] + mi := &file_Gameapi_proto_msgTypes[257] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15855,7 +16002,7 @@ func (x *ResUpdatePlayerProfile) ProtoReflect() protoreflect.Message { // Deprecated: Use ResUpdatePlayerProfile.ProtoReflect.Descriptor instead. func (*ResUpdatePlayerProfile) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{255} + return file_Gameapi_proto_rawDescGZIP(), []int{257} } func (x *ResUpdatePlayerProfile) GetDwUin() int32 { @@ -15896,7 +16043,7 @@ type ReqUpdateFBPicURL struct { func (x *ReqUpdateFBPicURL) Reset() { *x = ReqUpdateFBPicURL{} - mi := &file_Gameapi_proto_msgTypes[256] + mi := &file_Gameapi_proto_msgTypes[258] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15908,7 +16055,7 @@ func (x *ReqUpdateFBPicURL) String() string { func (*ReqUpdateFBPicURL) ProtoMessage() {} func (x *ReqUpdateFBPicURL) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[256] + mi := &file_Gameapi_proto_msgTypes[258] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15921,7 +16068,7 @@ func (x *ReqUpdateFBPicURL) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqUpdateFBPicURL.ProtoReflect.Descriptor instead. func (*ReqUpdateFBPicURL) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{256} + return file_Gameapi_proto_rawDescGZIP(), []int{258} } func (x *ReqUpdateFBPicURL) GetURL() string { @@ -15941,7 +16088,7 @@ type ResUpdateFBPicURL struct { func (x *ResUpdateFBPicURL) Reset() { *x = ResUpdateFBPicURL{} - mi := &file_Gameapi_proto_msgTypes[257] + mi := &file_Gameapi_proto_msgTypes[259] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15953,7 +16100,7 @@ func (x *ResUpdateFBPicURL) String() string { func (*ResUpdateFBPicURL) ProtoMessage() {} func (x *ResUpdateFBPicURL) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[257] + mi := &file_Gameapi_proto_msgTypes[259] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15966,7 +16113,7 @@ func (x *ResUpdateFBPicURL) ProtoReflect() protoreflect.Message { // Deprecated: Use ResUpdateFBPicURL.ProtoReflect.Descriptor instead. func (*ResUpdateFBPicURL) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{257} + return file_Gameapi_proto_rawDescGZIP(), []int{259} } func (x *ResUpdateFBPicURL) GetResultCode() int32 { @@ -15993,7 +16140,7 @@ type FriendInfo struct { func (x *FriendInfo) Reset() { *x = FriendInfo{} - mi := &file_Gameapi_proto_msgTypes[258] + mi := &file_Gameapi_proto_msgTypes[260] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16005,7 +16152,7 @@ func (x *FriendInfo) String() string { func (*FriendInfo) ProtoMessage() {} func (x *FriendInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[258] + mi := &file_Gameapi_proto_msgTypes[260] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16018,7 +16165,7 @@ func (x *FriendInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use FriendInfo.ProtoReflect.Descriptor instead. func (*FriendInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{258} + return file_Gameapi_proto_rawDescGZIP(), []int{260} } func (x *FriendInfo) GetDwUin() int32 { @@ -16081,7 +16228,7 @@ type ReqFriendData struct { func (x *ReqFriendData) Reset() { *x = ReqFriendData{} - mi := &file_Gameapi_proto_msgTypes[259] + mi := &file_Gameapi_proto_msgTypes[261] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16093,7 +16240,7 @@ func (x *ReqFriendData) String() string { func (*ReqFriendData) ProtoMessage() {} func (x *ReqFriendData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[259] + mi := &file_Gameapi_proto_msgTypes[261] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16106,7 +16253,7 @@ func (x *ReqFriendData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqFriendData.ProtoReflect.Descriptor instead. func (*ReqFriendData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{259} + return file_Gameapi_proto_rawDescGZIP(), []int{261} } func (x *ReqFriendData) GetDwUin() int32 { @@ -16127,7 +16274,7 @@ type ResFriendData struct { func (x *ResFriendData) Reset() { *x = ResFriendData{} - mi := &file_Gameapi_proto_msgTypes[260] + mi := &file_Gameapi_proto_msgTypes[262] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16139,7 +16286,7 @@ func (x *ResFriendData) String() string { func (*ResFriendData) ProtoMessage() {} func (x *ResFriendData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[260] + mi := &file_Gameapi_proto_msgTypes[262] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16152,7 +16299,7 @@ func (x *ResFriendData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFriendData.ProtoReflect.Descriptor instead. func (*ResFriendData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{260} + return file_Gameapi_proto_rawDescGZIP(), []int{262} } func (x *ResFriendData) GetDwUin() int32 { @@ -16181,7 +16328,7 @@ type AddFriendData struct { func (x *AddFriendData) Reset() { *x = AddFriendData{} - mi := &file_Gameapi_proto_msgTypes[261] + mi := &file_Gameapi_proto_msgTypes[263] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16193,7 +16340,7 @@ func (x *AddFriendData) String() string { func (*AddFriendData) ProtoMessage() {} func (x *AddFriendData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[261] + mi := &file_Gameapi_proto_msgTypes[263] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16206,7 +16353,7 @@ func (x *AddFriendData) ProtoReflect() protoreflect.Message { // Deprecated: Use AddFriendData.ProtoReflect.Descriptor instead. func (*AddFriendData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{261} + return file_Gameapi_proto_rawDescGZIP(), []int{263} } func (x *AddFriendData) GetFinfo() *FriendInfo { @@ -16235,7 +16382,7 @@ type ReqWillPlayerDetail struct { func (x *ReqWillPlayerDetail) Reset() { *x = ReqWillPlayerDetail{} - mi := &file_Gameapi_proto_msgTypes[262] + mi := &file_Gameapi_proto_msgTypes[264] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16247,7 +16394,7 @@ func (x *ReqWillPlayerDetail) String() string { func (*ReqWillPlayerDetail) ProtoMessage() {} func (x *ReqWillPlayerDetail) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[262] + mi := &file_Gameapi_proto_msgTypes[264] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16260,7 +16407,7 @@ func (x *ReqWillPlayerDetail) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqWillPlayerDetail.ProtoReflect.Descriptor instead. func (*ReqWillPlayerDetail) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{262} + return file_Gameapi_proto_rawDescGZIP(), []int{264} } func (x *ReqWillPlayerDetail) GetPlayerId() int32 { @@ -16289,7 +16436,7 @@ type ResWillPlayerDetail struct { func (x *ResWillPlayerDetail) Reset() { *x = ResWillPlayerDetail{} - mi := &file_Gameapi_proto_msgTypes[263] + mi := &file_Gameapi_proto_msgTypes[265] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16301,7 +16448,7 @@ func (x *ResWillPlayerDetail) String() string { func (*ResWillPlayerDetail) ProtoMessage() {} func (x *ResWillPlayerDetail) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[263] + mi := &file_Gameapi_proto_msgTypes[265] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16314,7 +16461,7 @@ func (x *ResWillPlayerDetail) ProtoReflect() protoreflect.Message { // Deprecated: Use ResWillPlayerDetail.ProtoReflect.Descriptor instead. func (*ResWillPlayerDetail) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{263} + return file_Gameapi_proto_rawDescGZIP(), []int{265} } func (x *ResWillPlayerDetail) GetPlayerInfos() []*FriendInfo { @@ -16343,7 +16490,7 @@ type ReqAddFriendData struct { func (x *ReqAddFriendData) Reset() { *x = ReqAddFriendData{} - mi := &file_Gameapi_proto_msgTypes[264] + mi := &file_Gameapi_proto_msgTypes[266] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16355,7 +16502,7 @@ func (x *ReqAddFriendData) String() string { func (*ReqAddFriendData) ProtoMessage() {} func (x *ReqAddFriendData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[264] + mi := &file_Gameapi_proto_msgTypes[266] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16368,7 +16515,7 @@ func (x *ReqAddFriendData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAddFriendData.ProtoReflect.Descriptor instead. func (*ReqAddFriendData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{264} + return file_Gameapi_proto_rawDescGZIP(), []int{266} } func (x *ReqAddFriendData) GetSenderId() int32 { @@ -16396,7 +16543,7 @@ type ResAddFriendData struct { func (x *ResAddFriendData) Reset() { *x = ResAddFriendData{} - mi := &file_Gameapi_proto_msgTypes[265] + mi := &file_Gameapi_proto_msgTypes[267] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16408,7 +16555,7 @@ func (x *ResAddFriendData) String() string { func (*ResAddFriendData) ProtoMessage() {} func (x *ResAddFriendData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[265] + mi := &file_Gameapi_proto_msgTypes[267] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16421,7 +16568,7 @@ func (x *ResAddFriendData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResAddFriendData.ProtoReflect.Descriptor instead. func (*ResAddFriendData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{265} + return file_Gameapi_proto_rawDescGZIP(), []int{267} } func (x *ResAddFriendData) GetResultCode() int32 { @@ -16442,7 +16589,7 @@ type NotifyAddFriendReq struct { func (x *NotifyAddFriendReq) Reset() { *x = NotifyAddFriendReq{} - mi := &file_Gameapi_proto_msgTypes[266] + mi := &file_Gameapi_proto_msgTypes[268] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16454,7 +16601,7 @@ func (x *NotifyAddFriendReq) String() string { func (*NotifyAddFriendReq) ProtoMessage() {} func (x *NotifyAddFriendReq) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[266] + mi := &file_Gameapi_proto_msgTypes[268] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16467,7 +16614,7 @@ func (x *NotifyAddFriendReq) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyAddFriendReq.ProtoReflect.Descriptor instead. func (*NotifyAddFriendReq) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{266} + return file_Gameapi_proto_rawDescGZIP(), []int{268} } func (x *NotifyAddFriendReq) GetReqInfo() *AddFriendData { @@ -16488,7 +16635,7 @@ type ReqAllAddFriendInfo struct { func (x *ReqAllAddFriendInfo) Reset() { *x = ReqAllAddFriendInfo{} - mi := &file_Gameapi_proto_msgTypes[267] + mi := &file_Gameapi_proto_msgTypes[269] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16500,7 +16647,7 @@ func (x *ReqAllAddFriendInfo) String() string { func (*ReqAllAddFriendInfo) ProtoMessage() {} func (x *ReqAllAddFriendInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[267] + mi := &file_Gameapi_proto_msgTypes[269] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16513,7 +16660,7 @@ func (x *ReqAllAddFriendInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAllAddFriendInfo.ProtoReflect.Descriptor instead. func (*ReqAllAddFriendInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{267} + return file_Gameapi_proto_rawDescGZIP(), []int{269} } func (x *ReqAllAddFriendInfo) GetDwUin() int32 { @@ -16535,7 +16682,7 @@ type ResAllAddFriendInfo struct { func (x *ResAllAddFriendInfo) Reset() { *x = ResAllAddFriendInfo{} - mi := &file_Gameapi_proto_msgTypes[268] + mi := &file_Gameapi_proto_msgTypes[270] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16547,7 +16694,7 @@ func (x *ResAllAddFriendInfo) String() string { func (*ResAllAddFriendInfo) ProtoMessage() {} func (x *ResAllAddFriendInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[268] + mi := &file_Gameapi_proto_msgTypes[270] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16560,7 +16707,7 @@ func (x *ResAllAddFriendInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ResAllAddFriendInfo.ProtoReflect.Descriptor instead. func (*ResAllAddFriendInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{268} + return file_Gameapi_proto_rawDescGZIP(), []int{270} } func (x *ResAllAddFriendInfo) GetDwUin() int32 { @@ -16588,7 +16735,7 @@ type ReqAgreeFriendReq struct { func (x *ReqAgreeFriendReq) Reset() { *x = ReqAgreeFriendReq{} - mi := &file_Gameapi_proto_msgTypes[269] + mi := &file_Gameapi_proto_msgTypes[271] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16600,7 +16747,7 @@ func (x *ReqAgreeFriendReq) String() string { func (*ReqAgreeFriendReq) ProtoMessage() {} func (x *ReqAgreeFriendReq) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[269] + mi := &file_Gameapi_proto_msgTypes[271] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16613,7 +16760,7 @@ func (x *ReqAgreeFriendReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAgreeFriendReq.ProtoReflect.Descriptor instead. func (*ReqAgreeFriendReq) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{269} + return file_Gameapi_proto_rawDescGZIP(), []int{271} } func (x *ReqAgreeFriendReq) GetAutoId() int32 { @@ -16636,7 +16783,7 @@ type ResAgreeFriendReq struct { func (x *ResAgreeFriendReq) Reset() { *x = ResAgreeFriendReq{} - mi := &file_Gameapi_proto_msgTypes[270] + mi := &file_Gameapi_proto_msgTypes[272] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16648,7 +16795,7 @@ func (x *ResAgreeFriendReq) String() string { func (*ResAgreeFriendReq) ProtoMessage() {} func (x *ResAgreeFriendReq) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[270] + mi := &file_Gameapi_proto_msgTypes[272] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16661,7 +16808,7 @@ func (x *ResAgreeFriendReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ResAgreeFriendReq.ProtoReflect.Descriptor instead. func (*ResAgreeFriendReq) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{270} + return file_Gameapi_proto_rawDescGZIP(), []int{272} } func (x *ResAgreeFriendReq) GetAutoId() int32 { @@ -16697,7 +16844,7 @@ type NotifyAgreeAddFriend struct { func (x *NotifyAgreeAddFriend) Reset() { *x = NotifyAgreeAddFriend{} - mi := &file_Gameapi_proto_msgTypes[271] + mi := &file_Gameapi_proto_msgTypes[273] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16709,7 +16856,7 @@ func (x *NotifyAgreeAddFriend) String() string { func (*NotifyAgreeAddFriend) ProtoMessage() {} func (x *NotifyAgreeAddFriend) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[271] + mi := &file_Gameapi_proto_msgTypes[273] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16722,7 +16869,7 @@ func (x *NotifyAgreeAddFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyAgreeAddFriend.ProtoReflect.Descriptor instead. func (*NotifyAgreeAddFriend) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{271} + return file_Gameapi_proto_rawDescGZIP(), []int{273} } func (x *NotifyAgreeAddFriend) GetAutoId() int32 { @@ -16749,7 +16896,7 @@ type ReqRefuseFriendReq struct { func (x *ReqRefuseFriendReq) Reset() { *x = ReqRefuseFriendReq{} - mi := &file_Gameapi_proto_msgTypes[272] + mi := &file_Gameapi_proto_msgTypes[274] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16761,7 +16908,7 @@ func (x *ReqRefuseFriendReq) String() string { func (*ReqRefuseFriendReq) ProtoMessage() {} func (x *ReqRefuseFriendReq) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[272] + mi := &file_Gameapi_proto_msgTypes[274] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16774,7 +16921,7 @@ func (x *ReqRefuseFriendReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqRefuseFriendReq.ProtoReflect.Descriptor instead. func (*ReqRefuseFriendReq) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{272} + return file_Gameapi_proto_rawDescGZIP(), []int{274} } func (x *ReqRefuseFriendReq) GetAutoId() int32 { @@ -16795,7 +16942,7 @@ type ResRefuseFriendReq struct { func (x *ResRefuseFriendReq) Reset() { *x = ResRefuseFriendReq{} - mi := &file_Gameapi_proto_msgTypes[273] + mi := &file_Gameapi_proto_msgTypes[275] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16807,7 +16954,7 @@ func (x *ResRefuseFriendReq) String() string { func (*ResRefuseFriendReq) ProtoMessage() {} func (x *ResRefuseFriendReq) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[273] + mi := &file_Gameapi_proto_msgTypes[275] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16820,7 +16967,7 @@ func (x *ResRefuseFriendReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ResRefuseFriendReq.ProtoReflect.Descriptor instead. func (*ResRefuseFriendReq) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{273} + return file_Gameapi_proto_rawDescGZIP(), []int{275} } func (x *ResRefuseFriendReq) GetAutoId() int32 { @@ -16848,7 +16995,7 @@ type NotifyDeleteFriend struct { func (x *NotifyDeleteFriend) Reset() { *x = NotifyDeleteFriend{} - mi := &file_Gameapi_proto_msgTypes[274] + mi := &file_Gameapi_proto_msgTypes[276] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16860,7 +17007,7 @@ func (x *NotifyDeleteFriend) String() string { func (*NotifyDeleteFriend) ProtoMessage() {} func (x *NotifyDeleteFriend) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[274] + mi := &file_Gameapi_proto_msgTypes[276] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16873,7 +17020,7 @@ func (x *NotifyDeleteFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyDeleteFriend.ProtoReflect.Descriptor instead. func (*NotifyDeleteFriend) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{274} + return file_Gameapi_proto_rawDescGZIP(), []int{276} } func (x *NotifyDeleteFriend) GetPlayerId() int32 { @@ -16893,7 +17040,7 @@ type ReqDeleteFriend struct { func (x *ReqDeleteFriend) Reset() { *x = ReqDeleteFriend{} - mi := &file_Gameapi_proto_msgTypes[275] + mi := &file_Gameapi_proto_msgTypes[277] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16905,7 +17052,7 @@ func (x *ReqDeleteFriend) String() string { func (*ReqDeleteFriend) ProtoMessage() {} func (x *ReqDeleteFriend) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[275] + mi := &file_Gameapi_proto_msgTypes[277] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16918,7 +17065,7 @@ func (x *ReqDeleteFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqDeleteFriend.ProtoReflect.Descriptor instead. func (*ReqDeleteFriend) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{275} + return file_Gameapi_proto_rawDescGZIP(), []int{277} } func (x *ReqDeleteFriend) GetPlayerId() int32 { @@ -16939,7 +17086,7 @@ type ResDeleteFriend struct { func (x *ResDeleteFriend) Reset() { *x = ResDeleteFriend{} - mi := &file_Gameapi_proto_msgTypes[276] + mi := &file_Gameapi_proto_msgTypes[278] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16951,7 +17098,7 @@ func (x *ResDeleteFriend) String() string { func (*ResDeleteFriend) ProtoMessage() {} func (x *ResDeleteFriend) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[276] + mi := &file_Gameapi_proto_msgTypes[278] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16964,7 +17111,7 @@ func (x *ResDeleteFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use ResDeleteFriend.ProtoReflect.Descriptor instead. func (*ResDeleteFriend) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{276} + return file_Gameapi_proto_rawDescGZIP(), []int{278} } func (x *ResDeleteFriend) GetPlayerId() int32 { @@ -16991,7 +17138,7 @@ type ReqAutoFBAddFriend struct { func (x *ReqAutoFBAddFriend) Reset() { *x = ReqAutoFBAddFriend{} - mi := &file_Gameapi_proto_msgTypes[277] + mi := &file_Gameapi_proto_msgTypes[279] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17003,7 +17150,7 @@ func (x *ReqAutoFBAddFriend) String() string { func (*ReqAutoFBAddFriend) ProtoMessage() {} func (x *ReqAutoFBAddFriend) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[277] + mi := &file_Gameapi_proto_msgTypes[279] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17016,7 +17163,7 @@ func (x *ReqAutoFBAddFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAutoFBAddFriend.ProtoReflect.Descriptor instead. func (*ReqAutoFBAddFriend) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{277} + return file_Gameapi_proto_rawDescGZIP(), []int{279} } func (x *ReqAutoFBAddFriend) GetFbIds() []string { @@ -17036,7 +17183,7 @@ type ResAutoFBAddFriend struct { func (x *ResAutoFBAddFriend) Reset() { *x = ResAutoFBAddFriend{} - mi := &file_Gameapi_proto_msgTypes[278] + mi := &file_Gameapi_proto_msgTypes[280] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17048,7 +17195,7 @@ func (x *ResAutoFBAddFriend) String() string { func (*ResAutoFBAddFriend) ProtoMessage() {} func (x *ResAutoFBAddFriend) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[278] + mi := &file_Gameapi_proto_msgTypes[280] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17061,7 +17208,7 @@ func (x *ResAutoFBAddFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use ResAutoFBAddFriend.ProtoReflect.Descriptor instead. func (*ResAutoFBAddFriend) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{278} + return file_Gameapi_proto_rawDescGZIP(), []int{280} } func (x *ResAutoFBAddFriend) GetResultCode() int32 { @@ -17081,7 +17228,7 @@ type NotifySuccessInviteAddFriend struct { func (x *NotifySuccessInviteAddFriend) Reset() { *x = NotifySuccessInviteAddFriend{} - mi := &file_Gameapi_proto_msgTypes[279] + mi := &file_Gameapi_proto_msgTypes[281] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17093,7 +17240,7 @@ func (x *NotifySuccessInviteAddFriend) String() string { func (*NotifySuccessInviteAddFriend) ProtoMessage() {} func (x *NotifySuccessInviteAddFriend) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[279] + mi := &file_Gameapi_proto_msgTypes[281] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17106,7 +17253,7 @@ func (x *NotifySuccessInviteAddFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifySuccessInviteAddFriend.ProtoReflect.Descriptor instead. func (*NotifySuccessInviteAddFriend) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{279} + return file_Gameapi_proto_rawDescGZIP(), []int{281} } func (x *NotifySuccessInviteAddFriend) GetData() *FriendInfo { @@ -17126,7 +17273,7 @@ type NotifySuccessFBAddFriend struct { func (x *NotifySuccessFBAddFriend) Reset() { *x = NotifySuccessFBAddFriend{} - mi := &file_Gameapi_proto_msgTypes[280] + mi := &file_Gameapi_proto_msgTypes[282] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17138,7 +17285,7 @@ func (x *NotifySuccessFBAddFriend) String() string { func (*NotifySuccessFBAddFriend) ProtoMessage() {} func (x *NotifySuccessFBAddFriend) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[280] + mi := &file_Gameapi_proto_msgTypes[282] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17151,7 +17298,7 @@ func (x *NotifySuccessFBAddFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifySuccessFBAddFriend.ProtoReflect.Descriptor instead. func (*NotifySuccessFBAddFriend) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{280} + return file_Gameapi_proto_rawDescGZIP(), []int{282} } func (x *NotifySuccessFBAddFriend) GetData() *FriendInfo { @@ -17173,7 +17320,7 @@ type ReqRecommendFriendList struct { func (x *ReqRecommendFriendList) Reset() { *x = ReqRecommendFriendList{} - mi := &file_Gameapi_proto_msgTypes[281] + mi := &file_Gameapi_proto_msgTypes[283] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17185,7 +17332,7 @@ func (x *ReqRecommendFriendList) String() string { func (*ReqRecommendFriendList) ProtoMessage() {} func (x *ReqRecommendFriendList) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[281] + mi := &file_Gameapi_proto_msgTypes[283] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17198,7 +17345,7 @@ func (x *ReqRecommendFriendList) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqRecommendFriendList.ProtoReflect.Descriptor instead. func (*ReqRecommendFriendList) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{281} + return file_Gameapi_proto_rawDescGZIP(), []int{283} } func (x *ReqRecommendFriendList) GetRecommendCnt() int32 { @@ -17226,7 +17373,7 @@ type ResRecommendFriendList struct { func (x *ResRecommendFriendList) Reset() { *x = ResRecommendFriendList{} - mi := &file_Gameapi_proto_msgTypes[282] + mi := &file_Gameapi_proto_msgTypes[284] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17238,7 +17385,7 @@ func (x *ResRecommendFriendList) String() string { func (*ResRecommendFriendList) ProtoMessage() {} func (x *ResRecommendFriendList) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[282] + mi := &file_Gameapi_proto_msgTypes[284] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17251,7 +17398,7 @@ func (x *ResRecommendFriendList) ProtoReflect() protoreflect.Message { // Deprecated: Use ResRecommendFriendList.ProtoReflect.Descriptor instead. func (*ResRecommendFriendList) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{282} + return file_Gameapi_proto_rawDescGZIP(), []int{284} } func (x *ResRecommendFriendList) GetPlayerInfos() []*FriendInfo { @@ -17272,7 +17419,7 @@ type ReqFriendTreasureData struct { func (x *ReqFriendTreasureData) Reset() { *x = ReqFriendTreasureData{} - mi := &file_Gameapi_proto_msgTypes[283] + mi := &file_Gameapi_proto_msgTypes[285] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17284,7 +17431,7 @@ func (x *ReqFriendTreasureData) String() string { func (*ReqFriendTreasureData) ProtoMessage() {} func (x *ReqFriendTreasureData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[283] + mi := &file_Gameapi_proto_msgTypes[285] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17297,7 +17444,7 @@ func (x *ReqFriendTreasureData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqFriendTreasureData.ProtoReflect.Descriptor instead. func (*ReqFriendTreasureData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{283} + return file_Gameapi_proto_rawDescGZIP(), []int{285} } func (x *ReqFriendTreasureData) GetDwUin() int32 { @@ -17317,7 +17464,7 @@ type ResFriendTreasureData struct { func (x *ResFriendTreasureData) Reset() { *x = ResFriendTreasureData{} - mi := &file_Gameapi_proto_msgTypes[284] + mi := &file_Gameapi_proto_msgTypes[286] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17329,7 +17476,7 @@ func (x *ResFriendTreasureData) String() string { func (*ResFriendTreasureData) ProtoMessage() {} func (x *ResFriendTreasureData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[284] + mi := &file_Gameapi_proto_msgTypes[286] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17342,7 +17489,7 @@ func (x *ResFriendTreasureData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFriendTreasureData.ProtoReflect.Descriptor instead. func (*ResFriendTreasureData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{284} + return file_Gameapi_proto_rawDescGZIP(), []int{286} } func (x *ResFriendTreasureData) GetStar() int32 { @@ -17362,7 +17509,7 @@ type ReqUpdateFriendStar struct { func (x *ReqUpdateFriendStar) Reset() { *x = ReqUpdateFriendStar{} - mi := &file_Gameapi_proto_msgTypes[285] + mi := &file_Gameapi_proto_msgTypes[287] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17374,7 +17521,7 @@ func (x *ReqUpdateFriendStar) String() string { func (*ReqUpdateFriendStar) ProtoMessage() {} func (x *ReqUpdateFriendStar) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[285] + mi := &file_Gameapi_proto_msgTypes[287] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17387,7 +17534,7 @@ func (x *ReqUpdateFriendStar) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqUpdateFriendStar.ProtoReflect.Descriptor instead. func (*ReqUpdateFriendStar) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{285} + return file_Gameapi_proto_rawDescGZIP(), []int{287} } func (x *ReqUpdateFriendStar) GetStar() int32 { @@ -17407,7 +17554,7 @@ type ResUpdateFriendStar struct { func (x *ResUpdateFriendStar) Reset() { *x = ResUpdateFriendStar{} - mi := &file_Gameapi_proto_msgTypes[286] + mi := &file_Gameapi_proto_msgTypes[288] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17419,7 +17566,7 @@ func (x *ResUpdateFriendStar) String() string { func (*ResUpdateFriendStar) ProtoMessage() {} func (x *ResUpdateFriendStar) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[286] + mi := &file_Gameapi_proto_msgTypes[288] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17432,7 +17579,7 @@ func (x *ResUpdateFriendStar) ProtoReflect() protoreflect.Message { // Deprecated: Use ResUpdateFriendStar.ProtoReflect.Descriptor instead. func (*ResUpdateFriendStar) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{286} + return file_Gameapi_proto_rawDescGZIP(), []int{288} } func (x *ResUpdateFriendStar) GetStar() int32 { @@ -17452,7 +17599,7 @@ type NotifyFriendTreasureStar struct { func (x *NotifyFriendTreasureStar) Reset() { *x = NotifyFriendTreasureStar{} - mi := &file_Gameapi_proto_msgTypes[287] + mi := &file_Gameapi_proto_msgTypes[289] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17464,7 +17611,7 @@ func (x *NotifyFriendTreasureStar) String() string { func (*NotifyFriendTreasureStar) ProtoMessage() {} func (x *NotifyFriendTreasureStar) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[287] + mi := &file_Gameapi_proto_msgTypes[289] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17477,7 +17624,7 @@ func (x *NotifyFriendTreasureStar) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyFriendTreasureStar.ProtoReflect.Descriptor instead. func (*NotifyFriendTreasureStar) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{287} + return file_Gameapi_proto_rawDescGZIP(), []int{289} } func (x *NotifyFriendTreasureStar) GetStar() int32 { @@ -17506,7 +17653,7 @@ type ExchangeCardItem struct { func (x *ExchangeCardItem) Reset() { *x = ExchangeCardItem{} - mi := &file_Gameapi_proto_msgTypes[288] + mi := &file_Gameapi_proto_msgTypes[290] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17518,7 +17665,7 @@ func (x *ExchangeCardItem) String() string { func (*ExchangeCardItem) ProtoMessage() {} func (x *ExchangeCardItem) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[288] + mi := &file_Gameapi_proto_msgTypes[290] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17531,7 +17678,7 @@ func (x *ExchangeCardItem) ProtoReflect() protoreflect.Message { // Deprecated: Use ExchangeCardItem.ProtoReflect.Descriptor instead. func (*ExchangeCardItem) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{288} + return file_Gameapi_proto_rawDescGZIP(), []int{290} } func (x *ExchangeCardItem) GetSenderId() int32 { @@ -17607,7 +17754,7 @@ type ReqExchangeCardBoxData struct { func (x *ReqExchangeCardBoxData) Reset() { *x = ReqExchangeCardBoxData{} - mi := &file_Gameapi_proto_msgTypes[289] + mi := &file_Gameapi_proto_msgTypes[291] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17619,7 +17766,7 @@ func (x *ReqExchangeCardBoxData) String() string { func (*ReqExchangeCardBoxData) ProtoMessage() {} func (x *ReqExchangeCardBoxData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[289] + mi := &file_Gameapi_proto_msgTypes[291] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17632,7 +17779,7 @@ func (x *ReqExchangeCardBoxData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqExchangeCardBoxData.ProtoReflect.Descriptor instead. func (*ReqExchangeCardBoxData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{289} + return file_Gameapi_proto_rawDescGZIP(), []int{291} } func (x *ReqExchangeCardBoxData) GetDwUin() int32 { @@ -17653,7 +17800,7 @@ type ResExchangeCardBoxData struct { func (x *ResExchangeCardBoxData) Reset() { *x = ResExchangeCardBoxData{} - mi := &file_Gameapi_proto_msgTypes[290] + mi := &file_Gameapi_proto_msgTypes[292] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17665,7 +17812,7 @@ func (x *ResExchangeCardBoxData) String() string { func (*ResExchangeCardBoxData) ProtoMessage() {} func (x *ResExchangeCardBoxData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[290] + mi := &file_Gameapi_proto_msgTypes[292] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17678,7 +17825,7 @@ func (x *ResExchangeCardBoxData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResExchangeCardBoxData.ProtoReflect.Descriptor instead. func (*ResExchangeCardBoxData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{290} + return file_Gameapi_proto_rawDescGZIP(), []int{292} } func (x *ResExchangeCardBoxData) GetDwUin() int32 { @@ -17708,7 +17855,7 @@ type NotifyCardDailyRenew struct { func (x *NotifyCardDailyRenew) Reset() { *x = NotifyCardDailyRenew{} - mi := &file_Gameapi_proto_msgTypes[291] + mi := &file_Gameapi_proto_msgTypes[293] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17720,7 +17867,7 @@ func (x *NotifyCardDailyRenew) String() string { func (*NotifyCardDailyRenew) ProtoMessage() {} func (x *NotifyCardDailyRenew) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[291] + mi := &file_Gameapi_proto_msgTypes[293] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17733,7 +17880,7 @@ func (x *NotifyCardDailyRenew) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyCardDailyRenew.ProtoReflect.Descriptor instead. func (*NotifyCardDailyRenew) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{291} + return file_Gameapi_proto_rawDescGZIP(), []int{293} } func (x *NotifyCardDailyRenew) GetActiveID() int32 { @@ -17777,7 +17924,7 @@ type ReqDonateFriendCard struct { func (x *ReqDonateFriendCard) Reset() { *x = ReqDonateFriendCard{} - mi := &file_Gameapi_proto_msgTypes[292] + mi := &file_Gameapi_proto_msgTypes[294] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17789,7 +17936,7 @@ func (x *ReqDonateFriendCard) String() string { func (*ReqDonateFriendCard) ProtoMessage() {} func (x *ReqDonateFriendCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[292] + mi := &file_Gameapi_proto_msgTypes[294] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17802,7 +17949,7 @@ func (x *ReqDonateFriendCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqDonateFriendCard.ProtoReflect.Descriptor instead. func (*ReqDonateFriendCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{292} + return file_Gameapi_proto_rawDescGZIP(), []int{294} } func (x *ReqDonateFriendCard) GetSenderId() int32 { @@ -17844,7 +17991,7 @@ type ResDonateFriendCard struct { func (x *ResDonateFriendCard) Reset() { *x = ResDonateFriendCard{} - mi := &file_Gameapi_proto_msgTypes[293] + mi := &file_Gameapi_proto_msgTypes[295] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17856,7 +18003,7 @@ func (x *ResDonateFriendCard) String() string { func (*ResDonateFriendCard) ProtoMessage() {} func (x *ResDonateFriendCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[293] + mi := &file_Gameapi_proto_msgTypes[295] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17869,7 +18016,7 @@ func (x *ResDonateFriendCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ResDonateFriendCard.ProtoReflect.Descriptor instead. func (*ResDonateFriendCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{293} + return file_Gameapi_proto_rawDescGZIP(), []int{295} } func (x *ResDonateFriendCard) GetMExchangeCardItem() *ExchangeCardItem { @@ -17896,7 +18043,7 @@ type NotifyDonateFriendCard struct { func (x *NotifyDonateFriendCard) Reset() { *x = NotifyDonateFriendCard{} - mi := &file_Gameapi_proto_msgTypes[294] + mi := &file_Gameapi_proto_msgTypes[296] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17908,7 +18055,7 @@ func (x *NotifyDonateFriendCard) String() string { func (*NotifyDonateFriendCard) ProtoMessage() {} func (x *NotifyDonateFriendCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[294] + mi := &file_Gameapi_proto_msgTypes[296] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17921,7 +18068,7 @@ func (x *NotifyDonateFriendCard) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyDonateFriendCard.ProtoReflect.Descriptor instead. func (*NotifyDonateFriendCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{294} + return file_Gameapi_proto_rawDescGZIP(), []int{296} } func (x *NotifyDonateFriendCard) GetMExchangeCardItem() *ExchangeCardItem { @@ -17941,7 +18088,7 @@ type ReqGetDonateCard struct { func (x *ReqGetDonateCard) Reset() { *x = ReqGetDonateCard{} - mi := &file_Gameapi_proto_msgTypes[295] + mi := &file_Gameapi_proto_msgTypes[297] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17953,7 +18100,7 @@ func (x *ReqGetDonateCard) String() string { func (*ReqGetDonateCard) ProtoMessage() {} func (x *ReqGetDonateCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[295] + mi := &file_Gameapi_proto_msgTypes[297] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17966,7 +18113,7 @@ func (x *ReqGetDonateCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGetDonateCard.ProtoReflect.Descriptor instead. func (*ReqGetDonateCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{295} + return file_Gameapi_proto_rawDescGZIP(), []int{297} } func (x *ReqGetDonateCard) GetMExchangeCardItem() *ExchangeCardItem { @@ -17986,7 +18133,7 @@ type NotifyGetDonateCard struct { func (x *NotifyGetDonateCard) Reset() { *x = NotifyGetDonateCard{} - mi := &file_Gameapi_proto_msgTypes[296] + mi := &file_Gameapi_proto_msgTypes[298] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17998,7 +18145,7 @@ func (x *NotifyGetDonateCard) String() string { func (*NotifyGetDonateCard) ProtoMessage() {} func (x *NotifyGetDonateCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[296] + mi := &file_Gameapi_proto_msgTypes[298] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18011,7 +18158,7 @@ func (x *NotifyGetDonateCard) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyGetDonateCard.ProtoReflect.Descriptor instead. func (*NotifyGetDonateCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{296} + return file_Gameapi_proto_rawDescGZIP(), []int{298} } func (x *NotifyGetDonateCard) GetMExchangeCardItem() *ExchangeCardItem { @@ -18032,7 +18179,7 @@ type ResGetDonateCard struct { func (x *ResGetDonateCard) Reset() { *x = ResGetDonateCard{} - mi := &file_Gameapi_proto_msgTypes[297] + mi := &file_Gameapi_proto_msgTypes[299] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18044,7 +18191,7 @@ func (x *ResGetDonateCard) String() string { func (*ResGetDonateCard) ProtoMessage() {} func (x *ResGetDonateCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[297] + mi := &file_Gameapi_proto_msgTypes[299] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18057,7 +18204,7 @@ func (x *ResGetDonateCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGetDonateCard.ProtoReflect.Descriptor instead. func (*ResGetDonateCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{297} + return file_Gameapi_proto_rawDescGZIP(), []int{299} } func (x *ResGetDonateCard) GetMExchangeCardItem() *ExchangeCardItem { @@ -18084,7 +18231,7 @@ type ReqRefuseExchange struct { func (x *ReqRefuseExchange) Reset() { *x = ReqRefuseExchange{} - mi := &file_Gameapi_proto_msgTypes[298] + mi := &file_Gameapi_proto_msgTypes[300] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18096,7 +18243,7 @@ func (x *ReqRefuseExchange) String() string { func (*ReqRefuseExchange) ProtoMessage() {} func (x *ReqRefuseExchange) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[298] + mi := &file_Gameapi_proto_msgTypes[300] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18109,7 +18256,7 @@ func (x *ReqRefuseExchange) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqRefuseExchange.ProtoReflect.Descriptor instead. func (*ReqRefuseExchange) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{298} + return file_Gameapi_proto_rawDescGZIP(), []int{300} } func (x *ReqRefuseExchange) GetMExchangeCardItem() *ExchangeCardItem { @@ -18131,7 +18278,7 @@ type ResRefuseExchange struct { func (x *ResRefuseExchange) Reset() { *x = ResRefuseExchange{} - mi := &file_Gameapi_proto_msgTypes[299] + mi := &file_Gameapi_proto_msgTypes[301] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18143,7 +18290,7 @@ func (x *ResRefuseExchange) String() string { func (*ResRefuseExchange) ProtoMessage() {} func (x *ResRefuseExchange) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[299] + mi := &file_Gameapi_proto_msgTypes[301] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18156,7 +18303,7 @@ func (x *ResRefuseExchange) ProtoReflect() protoreflect.Message { // Deprecated: Use ResRefuseExchange.ProtoReflect.Descriptor instead. func (*ResRefuseExchange) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{299} + return file_Gameapi_proto_rawDescGZIP(), []int{301} } func (x *ResRefuseExchange) GetMExchangeCardItem() *ExchangeCardItem { @@ -18191,7 +18338,7 @@ type NOtifyRefuseExchange struct { func (x *NOtifyRefuseExchange) Reset() { *x = NOtifyRefuseExchange{} - mi := &file_Gameapi_proto_msgTypes[300] + mi := &file_Gameapi_proto_msgTypes[302] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18203,7 +18350,7 @@ func (x *NOtifyRefuseExchange) String() string { func (*NOtifyRefuseExchange) ProtoMessage() {} func (x *NOtifyRefuseExchange) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[300] + mi := &file_Gameapi_proto_msgTypes[302] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18216,7 +18363,7 @@ func (x *NOtifyRefuseExchange) ProtoReflect() protoreflect.Message { // Deprecated: Use NOtifyRefuseExchange.ProtoReflect.Descriptor instead. func (*NOtifyRefuseExchange) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{300} + return file_Gameapi_proto_rawDescGZIP(), []int{302} } func (x *NOtifyRefuseExchange) GetMExchangeCardItem() *ExchangeCardItem { @@ -18246,7 +18393,7 @@ type ReqExchangeCard struct { func (x *ReqExchangeCard) Reset() { *x = ReqExchangeCard{} - mi := &file_Gameapi_proto_msgTypes[301] + mi := &file_Gameapi_proto_msgTypes[303] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18258,7 +18405,7 @@ func (x *ReqExchangeCard) String() string { func (*ReqExchangeCard) ProtoMessage() {} func (x *ReqExchangeCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[301] + mi := &file_Gameapi_proto_msgTypes[303] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18271,7 +18418,7 @@ func (x *ReqExchangeCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqExchangeCard.ProtoReflect.Descriptor instead. func (*ReqExchangeCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{301} + return file_Gameapi_proto_rawDescGZIP(), []int{303} } func (x *ReqExchangeCard) GetSenderId() int32 { @@ -18313,7 +18460,7 @@ type ResExchangeCard struct { func (x *ResExchangeCard) Reset() { *x = ResExchangeCard{} - mi := &file_Gameapi_proto_msgTypes[302] + mi := &file_Gameapi_proto_msgTypes[304] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18325,7 +18472,7 @@ func (x *ResExchangeCard) String() string { func (*ResExchangeCard) ProtoMessage() {} func (x *ResExchangeCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[302] + mi := &file_Gameapi_proto_msgTypes[304] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18338,7 +18485,7 @@ func (x *ResExchangeCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ResExchangeCard.ProtoReflect.Descriptor instead. func (*ResExchangeCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{302} + return file_Gameapi_proto_rawDescGZIP(), []int{304} } func (x *ResExchangeCard) GetMExchangeCardItem() *ExchangeCardItem { @@ -18365,7 +18512,7 @@ type NotifyExchangeTimeOut struct { func (x *NotifyExchangeTimeOut) Reset() { *x = NotifyExchangeTimeOut{} - mi := &file_Gameapi_proto_msgTypes[303] + mi := &file_Gameapi_proto_msgTypes[305] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18377,7 +18524,7 @@ func (x *NotifyExchangeTimeOut) String() string { func (*NotifyExchangeTimeOut) ProtoMessage() {} func (x *NotifyExchangeTimeOut) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[303] + mi := &file_Gameapi_proto_msgTypes[305] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18390,7 +18537,7 @@ func (x *NotifyExchangeTimeOut) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyExchangeTimeOut.ProtoReflect.Descriptor instead. func (*NotifyExchangeTimeOut) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{303} + return file_Gameapi_proto_rawDescGZIP(), []int{305} } func (x *NotifyExchangeTimeOut) GetMExchangeCardItem() *ExchangeCardItem { @@ -18410,7 +18557,7 @@ type NotifyExchangeCard struct { func (x *NotifyExchangeCard) Reset() { *x = NotifyExchangeCard{} - mi := &file_Gameapi_proto_msgTypes[304] + mi := &file_Gameapi_proto_msgTypes[306] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18422,7 +18569,7 @@ func (x *NotifyExchangeCard) String() string { func (*NotifyExchangeCard) ProtoMessage() {} func (x *NotifyExchangeCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[304] + mi := &file_Gameapi_proto_msgTypes[306] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18435,7 +18582,7 @@ func (x *NotifyExchangeCard) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyExchangeCard.ProtoReflect.Descriptor instead. func (*NotifyExchangeCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{304} + return file_Gameapi_proto_rawDescGZIP(), []int{306} } func (x *NotifyExchangeCard) GetMExchangeCardItem() *ExchangeCardItem { @@ -18455,7 +18602,7 @@ type ReqReceiptCard struct { func (x *ReqReceiptCard) Reset() { *x = ReqReceiptCard{} - mi := &file_Gameapi_proto_msgTypes[305] + mi := &file_Gameapi_proto_msgTypes[307] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18467,7 +18614,7 @@ func (x *ReqReceiptCard) String() string { func (*ReqReceiptCard) ProtoMessage() {} func (x *ReqReceiptCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[305] + mi := &file_Gameapi_proto_msgTypes[307] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18480,7 +18627,7 @@ func (x *ReqReceiptCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqReceiptCard.ProtoReflect.Descriptor instead. func (*ReqReceiptCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{305} + return file_Gameapi_proto_rawDescGZIP(), []int{307} } func (x *ReqReceiptCard) GetMExchangeCardItem() *ExchangeCardItem { @@ -18501,7 +18648,7 @@ type ResReceiptCard struct { func (x *ResReceiptCard) Reset() { *x = ResReceiptCard{} - mi := &file_Gameapi_proto_msgTypes[306] + mi := &file_Gameapi_proto_msgTypes[308] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18513,7 +18660,7 @@ func (x *ResReceiptCard) String() string { func (*ResReceiptCard) ProtoMessage() {} func (x *ResReceiptCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[306] + mi := &file_Gameapi_proto_msgTypes[308] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18526,7 +18673,7 @@ func (x *ResReceiptCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ResReceiptCard.ProtoReflect.Descriptor instead. func (*ResReceiptCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{306} + return file_Gameapi_proto_rawDescGZIP(), []int{308} } func (x *ResReceiptCard) GetMExchangeCardItem() *ExchangeCardItem { @@ -18553,7 +18700,7 @@ type NotifyReceiptCard struct { func (x *NotifyReceiptCard) Reset() { *x = NotifyReceiptCard{} - mi := &file_Gameapi_proto_msgTypes[307] + mi := &file_Gameapi_proto_msgTypes[309] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18565,7 +18712,7 @@ func (x *NotifyReceiptCard) String() string { func (*NotifyReceiptCard) ProtoMessage() {} func (x *NotifyReceiptCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[307] + mi := &file_Gameapi_proto_msgTypes[309] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18578,7 +18725,7 @@ func (x *NotifyReceiptCard) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyReceiptCard.ProtoReflect.Descriptor instead. func (*NotifyReceiptCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{307} + return file_Gameapi_proto_rawDescGZIP(), []int{309} } func (x *NotifyReceiptCard) GetMExchangeCardItem() *ExchangeCardItem { @@ -18598,7 +18745,7 @@ type ReqCompleteExchangeCard struct { func (x *ReqCompleteExchangeCard) Reset() { *x = ReqCompleteExchangeCard{} - mi := &file_Gameapi_proto_msgTypes[308] + mi := &file_Gameapi_proto_msgTypes[310] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18610,7 +18757,7 @@ func (x *ReqCompleteExchangeCard) String() string { func (*ReqCompleteExchangeCard) ProtoMessage() {} func (x *ReqCompleteExchangeCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[308] + mi := &file_Gameapi_proto_msgTypes[310] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18623,7 +18770,7 @@ func (x *ReqCompleteExchangeCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCompleteExchangeCard.ProtoReflect.Descriptor instead. func (*ReqCompleteExchangeCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{308} + return file_Gameapi_proto_rawDescGZIP(), []int{310} } func (x *ReqCompleteExchangeCard) GetMExchangeCardItem() *ExchangeCardItem { @@ -18644,7 +18791,7 @@ type ResCompleteExchangeCard struct { func (x *ResCompleteExchangeCard) Reset() { *x = ResCompleteExchangeCard{} - mi := &file_Gameapi_proto_msgTypes[309] + mi := &file_Gameapi_proto_msgTypes[311] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18656,7 +18803,7 @@ func (x *ResCompleteExchangeCard) String() string { func (*ResCompleteExchangeCard) ProtoMessage() {} func (x *ResCompleteExchangeCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[309] + mi := &file_Gameapi_proto_msgTypes[311] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18669,7 +18816,7 @@ func (x *ResCompleteExchangeCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCompleteExchangeCard.ProtoReflect.Descriptor instead. func (*ResCompleteExchangeCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{309} + return file_Gameapi_proto_rawDescGZIP(), []int{311} } func (x *ResCompleteExchangeCard) GetMExchangeCardItem() *ExchangeCardItem { @@ -18696,7 +18843,7 @@ type NotifyCompleteExchangeCard struct { func (x *NotifyCompleteExchangeCard) Reset() { *x = NotifyCompleteExchangeCard{} - mi := &file_Gameapi_proto_msgTypes[310] + mi := &file_Gameapi_proto_msgTypes[312] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18708,7 +18855,7 @@ func (x *NotifyCompleteExchangeCard) String() string { func (*NotifyCompleteExchangeCard) ProtoMessage() {} func (x *NotifyCompleteExchangeCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[310] + mi := &file_Gameapi_proto_msgTypes[312] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18721,7 +18868,7 @@ func (x *NotifyCompleteExchangeCard) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyCompleteExchangeCard.ProtoReflect.Descriptor instead. func (*NotifyCompleteExchangeCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{310} + return file_Gameapi_proto_rawDescGZIP(), []int{312} } func (x *NotifyCompleteExchangeCard) GetMExchangeCardItem() *ExchangeCardItem { @@ -18741,7 +18888,7 @@ type ReqGetExchangeCard struct { func (x *ReqGetExchangeCard) Reset() { *x = ReqGetExchangeCard{} - mi := &file_Gameapi_proto_msgTypes[311] + mi := &file_Gameapi_proto_msgTypes[313] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18753,7 +18900,7 @@ func (x *ReqGetExchangeCard) String() string { func (*ReqGetExchangeCard) ProtoMessage() {} func (x *ReqGetExchangeCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[311] + mi := &file_Gameapi_proto_msgTypes[313] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18766,7 +18913,7 @@ func (x *ReqGetExchangeCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGetExchangeCard.ProtoReflect.Descriptor instead. func (*ReqGetExchangeCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{311} + return file_Gameapi_proto_rawDescGZIP(), []int{313} } func (x *ReqGetExchangeCard) GetMExchangeCardItem() *ExchangeCardItem { @@ -18786,7 +18933,7 @@ type NotifyGetExchangeCard struct { func (x *NotifyGetExchangeCard) Reset() { *x = NotifyGetExchangeCard{} - mi := &file_Gameapi_proto_msgTypes[312] + mi := &file_Gameapi_proto_msgTypes[314] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18798,7 +18945,7 @@ func (x *NotifyGetExchangeCard) String() string { func (*NotifyGetExchangeCard) ProtoMessage() {} func (x *NotifyGetExchangeCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[312] + mi := &file_Gameapi_proto_msgTypes[314] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18811,7 +18958,7 @@ func (x *NotifyGetExchangeCard) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyGetExchangeCard.ProtoReflect.Descriptor instead. func (*NotifyGetExchangeCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{312} + return file_Gameapi_proto_rawDescGZIP(), []int{314} } func (x *NotifyGetExchangeCard) GetMExchangeCardItem() *ExchangeCardItem { @@ -18832,7 +18979,7 @@ type ResGetExchangeCard struct { func (x *ResGetExchangeCard) Reset() { *x = ResGetExchangeCard{} - mi := &file_Gameapi_proto_msgTypes[313] + mi := &file_Gameapi_proto_msgTypes[315] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18844,7 +18991,7 @@ func (x *ResGetExchangeCard) String() string { func (*ResGetExchangeCard) ProtoMessage() {} func (x *ResGetExchangeCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[313] + mi := &file_Gameapi_proto_msgTypes[315] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18857,7 +19004,7 @@ func (x *ResGetExchangeCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGetExchangeCard.ProtoReflect.Descriptor instead. func (*ResGetExchangeCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{313} + return file_Gameapi_proto_rawDescGZIP(), []int{315} } func (x *ResGetExchangeCard) GetMExchangeCardItem() *ExchangeCardItem { @@ -18884,7 +19031,7 @@ type NotifyDeleteGoldCardSwap struct { func (x *NotifyDeleteGoldCardSwap) Reset() { *x = NotifyDeleteGoldCardSwap{} - mi := &file_Gameapi_proto_msgTypes[314] + mi := &file_Gameapi_proto_msgTypes[316] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18896,7 +19043,7 @@ func (x *NotifyDeleteGoldCardSwap) String() string { func (*NotifyDeleteGoldCardSwap) ProtoMessage() {} func (x *NotifyDeleteGoldCardSwap) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[314] + mi := &file_Gameapi_proto_msgTypes[316] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18909,7 +19056,7 @@ func (x *NotifyDeleteGoldCardSwap) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyDeleteGoldCardSwap.ProtoReflect.Descriptor instead. func (*NotifyDeleteGoldCardSwap) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{314} + return file_Gameapi_proto_rawDescGZIP(), []int{316} } func (x *NotifyDeleteGoldCardSwap) GetMExchangeCardItems() []*ExchangeCardItem { @@ -18929,7 +19076,7 @@ type NotifyRequestTimeOut struct { func (x *NotifyRequestTimeOut) Reset() { *x = NotifyRequestTimeOut{} - mi := &file_Gameapi_proto_msgTypes[315] + mi := &file_Gameapi_proto_msgTypes[317] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18941,7 +19088,7 @@ func (x *NotifyRequestTimeOut) String() string { func (*NotifyRequestTimeOut) ProtoMessage() {} func (x *NotifyRequestTimeOut) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[315] + mi := &file_Gameapi_proto_msgTypes[317] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18954,7 +19101,7 @@ func (x *NotifyRequestTimeOut) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyRequestTimeOut.ProtoReflect.Descriptor instead. func (*NotifyRequestTimeOut) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{315} + return file_Gameapi_proto_rawDescGZIP(), []int{317} } func (x *NotifyRequestTimeOut) GetMExchangeCardItem() *ExchangeCardItem { @@ -18978,7 +19125,7 @@ type ReqRequestCard struct { func (x *ReqRequestCard) Reset() { *x = ReqRequestCard{} - mi := &file_Gameapi_proto_msgTypes[316] + mi := &file_Gameapi_proto_msgTypes[318] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18990,7 +19137,7 @@ func (x *ReqRequestCard) String() string { func (*ReqRequestCard) ProtoMessage() {} func (x *ReqRequestCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[316] + mi := &file_Gameapi_proto_msgTypes[318] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19003,7 +19150,7 @@ func (x *ReqRequestCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqRequestCard.ProtoReflect.Descriptor instead. func (*ReqRequestCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{316} + return file_Gameapi_proto_rawDescGZIP(), []int{318} } func (x *ReqRequestCard) GetSenderId() int32 { @@ -19045,7 +19192,7 @@ type ResRequestCard struct { func (x *ResRequestCard) Reset() { *x = ResRequestCard{} - mi := &file_Gameapi_proto_msgTypes[317] + mi := &file_Gameapi_proto_msgTypes[319] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19057,7 +19204,7 @@ func (x *ResRequestCard) String() string { func (*ResRequestCard) ProtoMessage() {} func (x *ResRequestCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[317] + mi := &file_Gameapi_proto_msgTypes[319] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19070,7 +19217,7 @@ func (x *ResRequestCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ResRequestCard.ProtoReflect.Descriptor instead. func (*ResRequestCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{317} + return file_Gameapi_proto_rawDescGZIP(), []int{319} } func (x *ResRequestCard) GetExchangeCardItems() []*ExchangeCardItem { @@ -19097,7 +19244,7 @@ type NotifyRequestCard struct { func (x *NotifyRequestCard) Reset() { *x = NotifyRequestCard{} - mi := &file_Gameapi_proto_msgTypes[318] + mi := &file_Gameapi_proto_msgTypes[320] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19109,7 +19256,7 @@ func (x *NotifyRequestCard) String() string { func (*NotifyRequestCard) ProtoMessage() {} func (x *NotifyRequestCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[318] + mi := &file_Gameapi_proto_msgTypes[320] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19122,7 +19269,7 @@ func (x *NotifyRequestCard) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyRequestCard.ProtoReflect.Descriptor instead. func (*NotifyRequestCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{318} + return file_Gameapi_proto_rawDescGZIP(), []int{320} } func (x *NotifyRequestCard) GetExchangeCardItems() *ExchangeCardItem { @@ -19142,7 +19289,7 @@ type ReqCompleteRequestCard struct { func (x *ReqCompleteRequestCard) Reset() { *x = ReqCompleteRequestCard{} - mi := &file_Gameapi_proto_msgTypes[319] + mi := &file_Gameapi_proto_msgTypes[321] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19154,7 +19301,7 @@ func (x *ReqCompleteRequestCard) String() string { func (*ReqCompleteRequestCard) ProtoMessage() {} func (x *ReqCompleteRequestCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[319] + mi := &file_Gameapi_proto_msgTypes[321] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19167,7 +19314,7 @@ func (x *ReqCompleteRequestCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCompleteRequestCard.ProtoReflect.Descriptor instead. func (*ReqCompleteRequestCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{319} + return file_Gameapi_proto_rawDescGZIP(), []int{321} } func (x *ReqCompleteRequestCard) GetExchangeCardItems() *ExchangeCardItem { @@ -19188,7 +19335,7 @@ type ResCompleteRequestCard struct { func (x *ResCompleteRequestCard) Reset() { *x = ResCompleteRequestCard{} - mi := &file_Gameapi_proto_msgTypes[320] + mi := &file_Gameapi_proto_msgTypes[322] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19200,7 +19347,7 @@ func (x *ResCompleteRequestCard) String() string { func (*ResCompleteRequestCard) ProtoMessage() {} func (x *ResCompleteRequestCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[320] + mi := &file_Gameapi_proto_msgTypes[322] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19213,7 +19360,7 @@ func (x *ResCompleteRequestCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCompleteRequestCard.ProtoReflect.Descriptor instead. func (*ResCompleteRequestCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{320} + return file_Gameapi_proto_rawDescGZIP(), []int{322} } func (x *ResCompleteRequestCard) GetExchangeCardItems() *ExchangeCardItem { @@ -19240,7 +19387,7 @@ type NotifyHaveFriendCompleteReq struct { func (x *NotifyHaveFriendCompleteReq) Reset() { *x = NotifyHaveFriendCompleteReq{} - mi := &file_Gameapi_proto_msgTypes[321] + mi := &file_Gameapi_proto_msgTypes[323] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19252,7 +19399,7 @@ func (x *NotifyHaveFriendCompleteReq) String() string { func (*NotifyHaveFriendCompleteReq) ProtoMessage() {} func (x *NotifyHaveFriendCompleteReq) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[321] + mi := &file_Gameapi_proto_msgTypes[323] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19265,7 +19412,7 @@ func (x *NotifyHaveFriendCompleteReq) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyHaveFriendCompleteReq.ProtoReflect.Descriptor instead. func (*NotifyHaveFriendCompleteReq) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{321} + return file_Gameapi_proto_rawDescGZIP(), []int{323} } func (x *NotifyHaveFriendCompleteReq) GetAutoId() int32 { @@ -19285,7 +19432,7 @@ type NotifyCompleteRequestCard struct { func (x *NotifyCompleteRequestCard) Reset() { *x = NotifyCompleteRequestCard{} - mi := &file_Gameapi_proto_msgTypes[322] + mi := &file_Gameapi_proto_msgTypes[324] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19297,7 +19444,7 @@ func (x *NotifyCompleteRequestCard) String() string { func (*NotifyCompleteRequestCard) ProtoMessage() {} func (x *NotifyCompleteRequestCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[322] + mi := &file_Gameapi_proto_msgTypes[324] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19310,7 +19457,7 @@ func (x *NotifyCompleteRequestCard) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyCompleteRequestCard.ProtoReflect.Descriptor instead. func (*NotifyCompleteRequestCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{322} + return file_Gameapi_proto_rawDescGZIP(), []int{324} } func (x *NotifyCompleteRequestCard) GetExchangeCardItems() *ExchangeCardItem { @@ -19330,7 +19477,7 @@ type ReqRefuseRequestCard struct { func (x *ReqRefuseRequestCard) Reset() { *x = ReqRefuseRequestCard{} - mi := &file_Gameapi_proto_msgTypes[323] + mi := &file_Gameapi_proto_msgTypes[325] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19342,7 +19489,7 @@ func (x *ReqRefuseRequestCard) String() string { func (*ReqRefuseRequestCard) ProtoMessage() {} func (x *ReqRefuseRequestCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[323] + mi := &file_Gameapi_proto_msgTypes[325] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19355,7 +19502,7 @@ func (x *ReqRefuseRequestCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqRefuseRequestCard.ProtoReflect.Descriptor instead. func (*ReqRefuseRequestCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{323} + return file_Gameapi_proto_rawDescGZIP(), []int{325} } func (x *ReqRefuseRequestCard) GetExchangeCardItems() *ExchangeCardItem { @@ -19375,7 +19522,7 @@ type ResRefuseRequestCard struct { func (x *ResRefuseRequestCard) Reset() { *x = ResRefuseRequestCard{} - mi := &file_Gameapi_proto_msgTypes[324] + mi := &file_Gameapi_proto_msgTypes[326] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19387,7 +19534,7 @@ func (x *ResRefuseRequestCard) String() string { func (*ResRefuseRequestCard) ProtoMessage() {} func (x *ResRefuseRequestCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[324] + mi := &file_Gameapi_proto_msgTypes[326] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19400,7 +19547,7 @@ func (x *ResRefuseRequestCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ResRefuseRequestCard.ProtoReflect.Descriptor instead. func (*ResRefuseRequestCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{324} + return file_Gameapi_proto_rawDescGZIP(), []int{326} } func (x *ResRefuseRequestCard) GetExchangeCardItems() *ExchangeCardItem { @@ -19421,7 +19568,7 @@ type NotifyRefuseRequestCard struct { func (x *NotifyRefuseRequestCard) Reset() { *x = NotifyRefuseRequestCard{} - mi := &file_Gameapi_proto_msgTypes[325] + mi := &file_Gameapi_proto_msgTypes[327] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19433,7 +19580,7 @@ func (x *NotifyRefuseRequestCard) String() string { func (*NotifyRefuseRequestCard) ProtoMessage() {} func (x *NotifyRefuseRequestCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[325] + mi := &file_Gameapi_proto_msgTypes[327] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19446,7 +19593,7 @@ func (x *NotifyRefuseRequestCard) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyRefuseRequestCard.ProtoReflect.Descriptor instead. func (*NotifyRefuseRequestCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{325} + return file_Gameapi_proto_rawDescGZIP(), []int{327} } func (x *NotifyRefuseRequestCard) GetExchangeCardItems() *ExchangeCardItem { @@ -19473,7 +19620,7 @@ type ReqGetRequestCard struct { func (x *ReqGetRequestCard) Reset() { *x = ReqGetRequestCard{} - mi := &file_Gameapi_proto_msgTypes[326] + mi := &file_Gameapi_proto_msgTypes[328] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19485,7 +19632,7 @@ func (x *ReqGetRequestCard) String() string { func (*ReqGetRequestCard) ProtoMessage() {} func (x *ReqGetRequestCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[326] + mi := &file_Gameapi_proto_msgTypes[328] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19498,7 +19645,7 @@ func (x *ReqGetRequestCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGetRequestCard.ProtoReflect.Descriptor instead. func (*ReqGetRequestCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{326} + return file_Gameapi_proto_rawDescGZIP(), []int{328} } func (x *ReqGetRequestCard) GetExchangeCardItems() *ExchangeCardItem { @@ -19519,7 +19666,7 @@ type ResGetRequestCard struct { func (x *ResGetRequestCard) Reset() { *x = ResGetRequestCard{} - mi := &file_Gameapi_proto_msgTypes[327] + mi := &file_Gameapi_proto_msgTypes[329] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19531,7 +19678,7 @@ func (x *ResGetRequestCard) String() string { func (*ResGetRequestCard) ProtoMessage() {} func (x *ResGetRequestCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[327] + mi := &file_Gameapi_proto_msgTypes[329] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19544,7 +19691,7 @@ func (x *ResGetRequestCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGetRequestCard.ProtoReflect.Descriptor instead. func (*ResGetRequestCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{327} + return file_Gameapi_proto_rawDescGZIP(), []int{329} } func (x *ResGetRequestCard) GetExchangeCardItems() *ExchangeCardItem { @@ -19573,7 +19720,7 @@ type ReqBindFacebookAccount struct { func (x *ReqBindFacebookAccount) Reset() { *x = ReqBindFacebookAccount{} - mi := &file_Gameapi_proto_msgTypes[328] + mi := &file_Gameapi_proto_msgTypes[330] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19585,7 +19732,7 @@ func (x *ReqBindFacebookAccount) String() string { func (*ReqBindFacebookAccount) ProtoMessage() {} func (x *ReqBindFacebookAccount) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[328] + mi := &file_Gameapi_proto_msgTypes[330] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19598,7 +19745,7 @@ func (x *ReqBindFacebookAccount) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqBindFacebookAccount.ProtoReflect.Descriptor instead. func (*ReqBindFacebookAccount) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{328} + return file_Gameapi_proto_rawDescGZIP(), []int{330} } func (x *ReqBindFacebookAccount) GetDwUin() int32 { @@ -19627,7 +19774,7 @@ type ResBindFacebookAccount struct { func (x *ResBindFacebookAccount) Reset() { *x = ResBindFacebookAccount{} - mi := &file_Gameapi_proto_msgTypes[329] + mi := &file_Gameapi_proto_msgTypes[331] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19639,7 +19786,7 @@ func (x *ResBindFacebookAccount) String() string { func (*ResBindFacebookAccount) ProtoMessage() {} func (x *ResBindFacebookAccount) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[329] + mi := &file_Gameapi_proto_msgTypes[331] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19652,7 +19799,7 @@ func (x *ResBindFacebookAccount) ProtoReflect() protoreflect.Message { // Deprecated: Use ResBindFacebookAccount.ProtoReflect.Descriptor instead. func (*ResBindFacebookAccount) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{329} + return file_Gameapi_proto_rawDescGZIP(), []int{331} } func (x *ResBindFacebookAccount) GetDwUin() int32 { @@ -19688,7 +19835,7 @@ type ReqOnlyBindFacebook struct { func (x *ReqOnlyBindFacebook) Reset() { *x = ReqOnlyBindFacebook{} - mi := &file_Gameapi_proto_msgTypes[330] + mi := &file_Gameapi_proto_msgTypes[332] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19700,7 +19847,7 @@ func (x *ReqOnlyBindFacebook) String() string { func (*ReqOnlyBindFacebook) ProtoMessage() {} func (x *ReqOnlyBindFacebook) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[330] + mi := &file_Gameapi_proto_msgTypes[332] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19713,7 +19860,7 @@ func (x *ReqOnlyBindFacebook) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqOnlyBindFacebook.ProtoReflect.Descriptor instead. func (*ReqOnlyBindFacebook) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{330} + return file_Gameapi_proto_rawDescGZIP(), []int{332} } func (x *ReqOnlyBindFacebook) GetDwUin() int32 { @@ -19742,7 +19889,7 @@ type ResOnlyBindFacebook struct { func (x *ResOnlyBindFacebook) Reset() { *x = ResOnlyBindFacebook{} - mi := &file_Gameapi_proto_msgTypes[331] + mi := &file_Gameapi_proto_msgTypes[333] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19754,7 +19901,7 @@ func (x *ResOnlyBindFacebook) String() string { func (*ResOnlyBindFacebook) ProtoMessage() {} func (x *ResOnlyBindFacebook) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[331] + mi := &file_Gameapi_proto_msgTypes[333] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19767,7 +19914,7 @@ func (x *ResOnlyBindFacebook) ProtoReflect() protoreflect.Message { // Deprecated: Use ResOnlyBindFacebook.ProtoReflect.Descriptor instead. func (*ResOnlyBindFacebook) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{331} + return file_Gameapi_proto_rawDescGZIP(), []int{333} } func (x *ResOnlyBindFacebook) GetDwUin() int32 { @@ -19803,7 +19950,7 @@ type ReqUnBindFacebook struct { func (x *ReqUnBindFacebook) Reset() { *x = ReqUnBindFacebook{} - mi := &file_Gameapi_proto_msgTypes[332] + mi := &file_Gameapi_proto_msgTypes[334] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19815,7 +19962,7 @@ func (x *ReqUnBindFacebook) String() string { func (*ReqUnBindFacebook) ProtoMessage() {} func (x *ReqUnBindFacebook) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[332] + mi := &file_Gameapi_proto_msgTypes[334] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19828,7 +19975,7 @@ func (x *ReqUnBindFacebook) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqUnBindFacebook.ProtoReflect.Descriptor instead. func (*ReqUnBindFacebook) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{332} + return file_Gameapi_proto_rawDescGZIP(), []int{334} } func (x *ReqUnBindFacebook) GetDwUin() int32 { @@ -19856,7 +20003,7 @@ type ResUnBindFacebook struct { func (x *ResUnBindFacebook) Reset() { *x = ResUnBindFacebook{} - mi := &file_Gameapi_proto_msgTypes[333] + mi := &file_Gameapi_proto_msgTypes[335] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19868,7 +20015,7 @@ func (x *ResUnBindFacebook) String() string { func (*ResUnBindFacebook) ProtoMessage() {} func (x *ResUnBindFacebook) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[333] + mi := &file_Gameapi_proto_msgTypes[335] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19881,7 +20028,7 @@ func (x *ResUnBindFacebook) ProtoReflect() protoreflect.Message { // Deprecated: Use ResUnBindFacebook.ProtoReflect.Descriptor instead. func (*ResUnBindFacebook) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{333} + return file_Gameapi_proto_rawDescGZIP(), []int{335} } func (x *ResUnBindFacebook) GetResultCode() int32 { @@ -19910,7 +20057,7 @@ type ReqSynGameData struct { func (x *ReqSynGameData) Reset() { *x = ReqSynGameData{} - mi := &file_Gameapi_proto_msgTypes[334] + mi := &file_Gameapi_proto_msgTypes[336] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19922,7 +20069,7 @@ func (x *ReqSynGameData) String() string { func (*ReqSynGameData) ProtoMessage() {} func (x *ReqSynGameData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[334] + mi := &file_Gameapi_proto_msgTypes[336] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19935,7 +20082,7 @@ func (x *ReqSynGameData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqSynGameData.ProtoReflect.Descriptor instead. func (*ReqSynGameData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{334} + return file_Gameapi_proto_rawDescGZIP(), []int{336} } func (x *ReqSynGameData) GetDwUin() int32 { @@ -19963,7 +20110,7 @@ type ResSynGameData struct { func (x *ResSynGameData) Reset() { *x = ResSynGameData{} - mi := &file_Gameapi_proto_msgTypes[335] + mi := &file_Gameapi_proto_msgTypes[337] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19975,7 +20122,7 @@ func (x *ResSynGameData) String() string { func (*ResSynGameData) ProtoMessage() {} func (x *ResSynGameData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[335] + mi := &file_Gameapi_proto_msgTypes[337] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19988,7 +20135,7 @@ func (x *ResSynGameData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResSynGameData.ProtoReflect.Descriptor instead. func (*ResSynGameData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{335} + return file_Gameapi_proto_rawDescGZIP(), []int{337} } func (x *ResSynGameData) GetDwUin() int32 { @@ -20015,7 +20162,7 @@ type ReqFriendEventData struct { func (x *ReqFriendEventData) Reset() { *x = ReqFriendEventData{} - mi := &file_Gameapi_proto_msgTypes[336] + mi := &file_Gameapi_proto_msgTypes[338] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20027,7 +20174,7 @@ func (x *ReqFriendEventData) String() string { func (*ReqFriendEventData) ProtoMessage() {} func (x *ReqFriendEventData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[336] + mi := &file_Gameapi_proto_msgTypes[338] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20040,7 +20187,7 @@ func (x *ReqFriendEventData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqFriendEventData.ProtoReflect.Descriptor instead. func (*ReqFriendEventData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{336} + return file_Gameapi_proto_rawDescGZIP(), []int{338} } func (x *ReqFriendEventData) GetDwUin() int32 { @@ -20064,7 +20211,7 @@ type FriendEventData struct { func (x *FriendEventData) Reset() { *x = FriendEventData{} - mi := &file_Gameapi_proto_msgTypes[337] + mi := &file_Gameapi_proto_msgTypes[339] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20076,7 +20223,7 @@ func (x *FriendEventData) String() string { func (*FriendEventData) ProtoMessage() {} func (x *FriendEventData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[337] + mi := &file_Gameapi_proto_msgTypes[339] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20089,7 +20236,7 @@ func (x *FriendEventData) ProtoReflect() protoreflect.Message { // Deprecated: Use FriendEventData.ProtoReflect.Descriptor instead. func (*FriendEventData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{337} + return file_Gameapi_proto_rawDescGZIP(), []int{339} } func (x *FriendEventData) GetEventStartTime() int32 { @@ -20137,7 +20284,7 @@ type ResFriendEventData struct { func (x *ResFriendEventData) Reset() { *x = ResFriendEventData{} - mi := &file_Gameapi_proto_msgTypes[338] + mi := &file_Gameapi_proto_msgTypes[340] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20149,7 +20296,7 @@ func (x *ResFriendEventData) String() string { func (*ResFriendEventData) ProtoMessage() {} func (x *ResFriendEventData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[338] + mi := &file_Gameapi_proto_msgTypes[340] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20162,7 +20309,7 @@ func (x *ResFriendEventData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFriendEventData.ProtoReflect.Descriptor instead. func (*ResFriendEventData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{338} + return file_Gameapi_proto_rawDescGZIP(), []int{340} } func (x *ResFriendEventData) GetMFriendEventData() []*FriendEventData { @@ -20183,7 +20330,7 @@ type NotifyNewFriendEvent struct { func (x *NotifyNewFriendEvent) Reset() { *x = NotifyNewFriendEvent{} - mi := &file_Gameapi_proto_msgTypes[339] + mi := &file_Gameapi_proto_msgTypes[341] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20195,7 +20342,7 @@ func (x *NotifyNewFriendEvent) String() string { func (*NotifyNewFriendEvent) ProtoMessage() {} func (x *NotifyNewFriendEvent) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[339] + mi := &file_Gameapi_proto_msgTypes[341] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20208,7 +20355,7 @@ func (x *NotifyNewFriendEvent) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyNewFriendEvent.ProtoReflect.Descriptor instead. func (*NotifyNewFriendEvent) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{339} + return file_Gameapi_proto_rawDescGZIP(), []int{341} } func (x *NotifyNewFriendEvent) GetDwUin() int32 { @@ -20236,7 +20383,7 @@ type NotifyFriendEventComplete struct { func (x *NotifyFriendEventComplete) Reset() { *x = NotifyFriendEventComplete{} - mi := &file_Gameapi_proto_msgTypes[340] + mi := &file_Gameapi_proto_msgTypes[342] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20248,7 +20395,7 @@ func (x *NotifyFriendEventComplete) String() string { func (*NotifyFriendEventComplete) ProtoMessage() {} func (x *NotifyFriendEventComplete) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[340] + mi := &file_Gameapi_proto_msgTypes[342] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20261,7 +20408,7 @@ func (x *NotifyFriendEventComplete) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyFriendEventComplete.ProtoReflect.Descriptor instead. func (*NotifyFriendEventComplete) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{340} + return file_Gameapi_proto_rawDescGZIP(), []int{342} } func (x *NotifyFriendEventComplete) GetDwUin() int32 { @@ -20291,7 +20438,7 @@ type ReqUpdatePetProfile struct { func (x *ReqUpdatePetProfile) Reset() { *x = ReqUpdatePetProfile{} - mi := &file_Gameapi_proto_msgTypes[341] + mi := &file_Gameapi_proto_msgTypes[343] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20303,7 +20450,7 @@ func (x *ReqUpdatePetProfile) String() string { func (*ReqUpdatePetProfile) ProtoMessage() {} func (x *ReqUpdatePetProfile) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[341] + mi := &file_Gameapi_proto_msgTypes[343] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20316,7 +20463,7 @@ func (x *ReqUpdatePetProfile) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqUpdatePetProfile.ProtoReflect.Descriptor instead. func (*ReqUpdatePetProfile) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{341} + return file_Gameapi_proto_rawDescGZIP(), []int{343} } func (x *ReqUpdatePetProfile) GetDwUin() int32 { @@ -20353,7 +20500,7 @@ type ResUpdatePetProfile struct { func (x *ResUpdatePetProfile) Reset() { *x = ResUpdatePetProfile{} - mi := &file_Gameapi_proto_msgTypes[342] + mi := &file_Gameapi_proto_msgTypes[344] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20365,7 +20512,7 @@ func (x *ResUpdatePetProfile) String() string { func (*ResUpdatePetProfile) ProtoMessage() {} func (x *ResUpdatePetProfile) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[342] + mi := &file_Gameapi_proto_msgTypes[344] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20378,7 +20525,7 @@ func (x *ResUpdatePetProfile) ProtoReflect() protoreflect.Message { // Deprecated: Use ResUpdatePetProfile.ProtoReflect.Descriptor instead. func (*ResUpdatePetProfile) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{342} + return file_Gameapi_proto_rawDescGZIP(), []int{344} } func (x *ResUpdatePetProfile) GetDwUin() int32 { @@ -20419,7 +20566,7 @@ type ReqPlayerPetData struct { func (x *ReqPlayerPetData) Reset() { *x = ReqPlayerPetData{} - mi := &file_Gameapi_proto_msgTypes[343] + mi := &file_Gameapi_proto_msgTypes[345] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20431,7 +20578,7 @@ func (x *ReqPlayerPetData) String() string { func (*ReqPlayerPetData) ProtoMessage() {} func (x *ReqPlayerPetData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[343] + mi := &file_Gameapi_proto_msgTypes[345] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20444,7 +20591,7 @@ func (x *ReqPlayerPetData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayerPetData.ProtoReflect.Descriptor instead. func (*ReqPlayerPetData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{343} + return file_Gameapi_proto_rawDescGZIP(), []int{345} } func (x *ReqPlayerPetData) GetDwUin() int32 { @@ -20469,7 +20616,7 @@ type ResPlayerPetData struct { func (x *ResPlayerPetData) Reset() { *x = ResPlayerPetData{} - mi := &file_Gameapi_proto_msgTypes[344] + mi := &file_Gameapi_proto_msgTypes[346] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20481,7 +20628,7 @@ func (x *ResPlayerPetData) String() string { func (*ResPlayerPetData) ProtoMessage() {} func (x *ResPlayerPetData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[344] + mi := &file_Gameapi_proto_msgTypes[346] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20494,7 +20641,7 @@ func (x *ResPlayerPetData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayerPetData.ProtoReflect.Descriptor instead. func (*ResPlayerPetData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{344} + return file_Gameapi_proto_rawDescGZIP(), []int{346} } func (x *ResPlayerPetData) GetDwUin() int32 { @@ -20553,7 +20700,7 @@ type PetHomeInterActST struct { func (x *PetHomeInterActST) Reset() { *x = PetHomeInterActST{} - mi := &file_Gameapi_proto_msgTypes[345] + mi := &file_Gameapi_proto_msgTypes[347] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20565,7 +20712,7 @@ func (x *PetHomeInterActST) String() string { func (*PetHomeInterActST) ProtoMessage() {} func (x *PetHomeInterActST) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[345] + mi := &file_Gameapi_proto_msgTypes[347] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20578,7 +20725,7 @@ func (x *PetHomeInterActST) ProtoReflect() protoreflect.Message { // Deprecated: Use PetHomeInterActST.ProtoReflect.Descriptor instead. func (*PetHomeInterActST) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{345} + return file_Gameapi_proto_rawDescGZIP(), []int{347} } func (x *PetHomeInterActST) GetDwUin() int32 { @@ -20620,7 +20767,7 @@ type ReqPetHomeData struct { func (x *ReqPetHomeData) Reset() { *x = ReqPetHomeData{} - mi := &file_Gameapi_proto_msgTypes[346] + mi := &file_Gameapi_proto_msgTypes[348] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20632,7 +20779,7 @@ func (x *ReqPetHomeData) String() string { func (*ReqPetHomeData) ProtoMessage() {} func (x *ReqPetHomeData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[346] + mi := &file_Gameapi_proto_msgTypes[348] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20645,7 +20792,7 @@ func (x *ReqPetHomeData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPetHomeData.ProtoReflect.Descriptor instead. func (*ReqPetHomeData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{346} + return file_Gameapi_proto_rawDescGZIP(), []int{348} } func (x *ReqPetHomeData) GetDwUin() int32 { @@ -20679,7 +20826,7 @@ type ResPetHomeData struct { func (x *ResPetHomeData) Reset() { *x = ResPetHomeData{} - mi := &file_Gameapi_proto_msgTypes[347] + mi := &file_Gameapi_proto_msgTypes[349] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20691,7 +20838,7 @@ func (x *ResPetHomeData) String() string { func (*ResPetHomeData) ProtoMessage() {} func (x *ResPetHomeData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[347] + mi := &file_Gameapi_proto_msgTypes[349] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20704,7 +20851,7 @@ func (x *ResPetHomeData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPetHomeData.ProtoReflect.Descriptor instead. func (*ResPetHomeData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{347} + return file_Gameapi_proto_rawDescGZIP(), []int{349} } func (x *ResPetHomeData) GetDwUin() int32 { @@ -20822,7 +20969,7 @@ type ReqUnlockDecorate struct { func (x *ReqUnlockDecorate) Reset() { *x = ReqUnlockDecorate{} - mi := &file_Gameapi_proto_msgTypes[348] + mi := &file_Gameapi_proto_msgTypes[350] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20834,7 +20981,7 @@ func (x *ReqUnlockDecorate) String() string { func (*ReqUnlockDecorate) ProtoMessage() {} func (x *ReqUnlockDecorate) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[348] + mi := &file_Gameapi_proto_msgTypes[350] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20847,7 +20994,7 @@ func (x *ReqUnlockDecorate) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqUnlockDecorate.ProtoReflect.Descriptor instead. func (*ReqUnlockDecorate) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{348} + return file_Gameapi_proto_rawDescGZIP(), []int{350} } func (x *ReqUnlockDecorate) GetDecorateId() int32 { @@ -20867,7 +21014,7 @@ type ResUnlockDecorate struct { func (x *ResUnlockDecorate) Reset() { *x = ResUnlockDecorate{} - mi := &file_Gameapi_proto_msgTypes[349] + mi := &file_Gameapi_proto_msgTypes[351] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20879,7 +21026,7 @@ func (x *ResUnlockDecorate) String() string { func (*ResUnlockDecorate) ProtoMessage() {} func (x *ResUnlockDecorate) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[349] + mi := &file_Gameapi_proto_msgTypes[351] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20892,7 +21039,7 @@ func (x *ResUnlockDecorate) ProtoReflect() protoreflect.Message { // Deprecated: Use ResUnlockDecorate.ProtoReflect.Descriptor instead. func (*ResUnlockDecorate) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{349} + return file_Gameapi_proto_rawDescGZIP(), []int{351} } func (x *ResUnlockDecorate) GetResultCode() int32 { @@ -20912,7 +21059,7 @@ type ReqSaveSelectDecorate struct { func (x *ReqSaveSelectDecorate) Reset() { *x = ReqSaveSelectDecorate{} - mi := &file_Gameapi_proto_msgTypes[350] + mi := &file_Gameapi_proto_msgTypes[352] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20924,7 +21071,7 @@ func (x *ReqSaveSelectDecorate) String() string { func (*ReqSaveSelectDecorate) ProtoMessage() {} func (x *ReqSaveSelectDecorate) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[350] + mi := &file_Gameapi_proto_msgTypes[352] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20937,7 +21084,7 @@ func (x *ReqSaveSelectDecorate) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqSaveSelectDecorate.ProtoReflect.Descriptor instead. func (*ReqSaveSelectDecorate) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{350} + return file_Gameapi_proto_rawDescGZIP(), []int{352} } func (x *ReqSaveSelectDecorate) GetSelectDecorateMap() map[int32]int32 { @@ -20958,7 +21105,7 @@ type ResSaveSelectDecorate struct { func (x *ResSaveSelectDecorate) Reset() { *x = ResSaveSelectDecorate{} - mi := &file_Gameapi_proto_msgTypes[351] + mi := &file_Gameapi_proto_msgTypes[353] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20970,7 +21117,7 @@ func (x *ResSaveSelectDecorate) String() string { func (*ResSaveSelectDecorate) ProtoMessage() {} func (x *ResSaveSelectDecorate) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[351] + mi := &file_Gameapi_proto_msgTypes[353] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20983,7 +21130,7 @@ func (x *ResSaveSelectDecorate) ProtoReflect() protoreflect.Message { // Deprecated: Use ResSaveSelectDecorate.ProtoReflect.Descriptor instead. func (*ResSaveSelectDecorate) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{351} + return file_Gameapi_proto_rawDescGZIP(), []int{353} } func (x *ResSaveSelectDecorate) GetResultCode() int32 { @@ -21010,7 +21157,7 @@ type NotifyPetGoHome struct { func (x *NotifyPetGoHome) Reset() { *x = NotifyPetGoHome{} - mi := &file_Gameapi_proto_msgTypes[352] + mi := &file_Gameapi_proto_msgTypes[354] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21022,7 +21169,7 @@ func (x *NotifyPetGoHome) String() string { func (*NotifyPetGoHome) ProtoMessage() {} func (x *NotifyPetGoHome) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[352] + mi := &file_Gameapi_proto_msgTypes[354] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21035,7 +21182,7 @@ func (x *NotifyPetGoHome) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyPetGoHome.ProtoReflect.Descriptor instead. func (*NotifyPetGoHome) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{352} + return file_Gameapi_proto_rawDescGZIP(), []int{354} } func (x *NotifyPetGoHome) GetAtHome() int32 { @@ -21055,7 +21202,7 @@ type NotifyPetLeave struct { func (x *NotifyPetLeave) Reset() { *x = NotifyPetLeave{} - mi := &file_Gameapi_proto_msgTypes[353] + mi := &file_Gameapi_proto_msgTypes[355] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21067,7 +21214,7 @@ func (x *NotifyPetLeave) String() string { func (*NotifyPetLeave) ProtoMessage() {} func (x *NotifyPetLeave) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[353] + mi := &file_Gameapi_proto_msgTypes[355] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21080,7 +21227,7 @@ func (x *NotifyPetLeave) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyPetLeave.ProtoReflect.Descriptor instead. func (*NotifyPetLeave) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{353} + return file_Gameapi_proto_rawDescGZIP(), []int{355} } func (x *NotifyPetLeave) GetAtHome() int32 { @@ -21101,7 +21248,7 @@ type ReqOpenOtherPetHome struct { func (x *ReqOpenOtherPetHome) Reset() { *x = ReqOpenOtherPetHome{} - mi := &file_Gameapi_proto_msgTypes[354] + mi := &file_Gameapi_proto_msgTypes[356] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21113,7 +21260,7 @@ func (x *ReqOpenOtherPetHome) String() string { func (*ReqOpenOtherPetHome) ProtoMessage() {} func (x *ReqOpenOtherPetHome) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[354] + mi := &file_Gameapi_proto_msgTypes[356] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21126,7 +21273,7 @@ func (x *ReqOpenOtherPetHome) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqOpenOtherPetHome.ProtoReflect.Descriptor instead. func (*ReqOpenOtherPetHome) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{354} + return file_Gameapi_proto_rawDescGZIP(), []int{356} } func (x *ReqOpenOtherPetHome) GetDwUin() int32 { @@ -21152,7 +21299,7 @@ type ResOpenOtherPetHome struct { func (x *ResOpenOtherPetHome) Reset() { *x = ResOpenOtherPetHome{} - mi := &file_Gameapi_proto_msgTypes[355] + mi := &file_Gameapi_proto_msgTypes[357] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21164,7 +21311,7 @@ func (x *ResOpenOtherPetHome) String() string { func (*ResOpenOtherPetHome) ProtoMessage() {} func (x *ResOpenOtherPetHome) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[355] + mi := &file_Gameapi_proto_msgTypes[357] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21177,7 +21324,7 @@ func (x *ResOpenOtherPetHome) ProtoReflect() protoreflect.Message { // Deprecated: Use ResOpenOtherPetHome.ProtoReflect.Descriptor instead. func (*ResOpenOtherPetHome) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{355} + return file_Gameapi_proto_rawDescGZIP(), []int{357} } func (x *ResOpenOtherPetHome) GetTargetUin() int32 { @@ -21243,7 +21390,7 @@ type ReqCompleteMiniGame struct { func (x *ReqCompleteMiniGame) Reset() { *x = ReqCompleteMiniGame{} - mi := &file_Gameapi_proto_msgTypes[356] + mi := &file_Gameapi_proto_msgTypes[358] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21255,7 +21402,7 @@ func (x *ReqCompleteMiniGame) String() string { func (*ReqCompleteMiniGame) ProtoMessage() {} func (x *ReqCompleteMiniGame) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[356] + mi := &file_Gameapi_proto_msgTypes[358] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21268,7 +21415,7 @@ func (x *ReqCompleteMiniGame) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCompleteMiniGame.ProtoReflect.Descriptor instead. func (*ReqCompleteMiniGame) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{356} + return file_Gameapi_proto_rawDescGZIP(), []int{358} } func (x *ReqCompleteMiniGame) GetDwUin() int32 { @@ -21315,7 +21462,7 @@ type ResCompleteMiniGame struct { func (x *ResCompleteMiniGame) Reset() { *x = ResCompleteMiniGame{} - mi := &file_Gameapi_proto_msgTypes[357] + mi := &file_Gameapi_proto_msgTypes[359] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21327,7 +21474,7 @@ func (x *ResCompleteMiniGame) String() string { func (*ResCompleteMiniGame) ProtoMessage() {} func (x *ResCompleteMiniGame) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[357] + mi := &file_Gameapi_proto_msgTypes[359] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21340,7 +21487,7 @@ func (x *ResCompleteMiniGame) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCompleteMiniGame.ProtoReflect.Descriptor instead. func (*ResCompleteMiniGame) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{357} + return file_Gameapi_proto_rawDescGZIP(), []int{359} } func (x *ResCompleteMiniGame) GetDwUin() int32 { @@ -21403,7 +21550,7 @@ type ReqOpenSelfPet struct { func (x *ReqOpenSelfPet) Reset() { *x = ReqOpenSelfPet{} - mi := &file_Gameapi_proto_msgTypes[358] + mi := &file_Gameapi_proto_msgTypes[360] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21415,7 +21562,7 @@ func (x *ReqOpenSelfPet) String() string { func (*ReqOpenSelfPet) ProtoMessage() {} func (x *ReqOpenSelfPet) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[358] + mi := &file_Gameapi_proto_msgTypes[360] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21428,7 +21575,7 @@ func (x *ReqOpenSelfPet) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqOpenSelfPet.ProtoReflect.Descriptor instead. func (*ReqOpenSelfPet) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{358} + return file_Gameapi_proto_rawDescGZIP(), []int{360} } func (x *ReqOpenSelfPet) GetDwUin() int32 { @@ -21449,7 +21596,7 @@ type ResOpenSelfPet struct { func (x *ResOpenSelfPet) Reset() { *x = ResOpenSelfPet{} - mi := &file_Gameapi_proto_msgTypes[359] + mi := &file_Gameapi_proto_msgTypes[361] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21461,7 +21608,7 @@ func (x *ResOpenSelfPet) String() string { func (*ResOpenSelfPet) ProtoMessage() {} func (x *ResOpenSelfPet) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[359] + mi := &file_Gameapi_proto_msgTypes[361] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21474,7 +21621,7 @@ func (x *ResOpenSelfPet) ProtoReflect() protoreflect.Message { // Deprecated: Use ResOpenSelfPet.ProtoReflect.Descriptor instead. func (*ResOpenSelfPet) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{359} + return file_Gameapi_proto_rawDescGZIP(), []int{361} } func (x *ResOpenSelfPet) GetDwUin() int32 { @@ -21502,7 +21649,7 @@ type NotifyPetWorkEnd struct { func (x *NotifyPetWorkEnd) Reset() { *x = NotifyPetWorkEnd{} - mi := &file_Gameapi_proto_msgTypes[360] + mi := &file_Gameapi_proto_msgTypes[362] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21514,7 +21661,7 @@ func (x *NotifyPetWorkEnd) String() string { func (*NotifyPetWorkEnd) ProtoMessage() {} func (x *NotifyPetWorkEnd) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[360] + mi := &file_Gameapi_proto_msgTypes[362] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21527,7 +21674,7 @@ func (x *NotifyPetWorkEnd) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyPetWorkEnd.ProtoReflect.Descriptor instead. func (*NotifyPetWorkEnd) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{360} + return file_Gameapi_proto_rawDescGZIP(), []int{362} } func (x *NotifyPetWorkEnd) GetMType() int32 { @@ -21548,7 +21695,7 @@ type ReqPetHomeInterActST struct { func (x *ReqPetHomeInterActST) Reset() { *x = ReqPetHomeInterActST{} - mi := &file_Gameapi_proto_msgTypes[361] + mi := &file_Gameapi_proto_msgTypes[363] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21560,7 +21707,7 @@ func (x *ReqPetHomeInterActST) String() string { func (*ReqPetHomeInterActST) ProtoMessage() {} func (x *ReqPetHomeInterActST) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[361] + mi := &file_Gameapi_proto_msgTypes[363] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21573,7 +21720,7 @@ func (x *ReqPetHomeInterActST) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPetHomeInterActST.ProtoReflect.Descriptor instead. func (*ReqPetHomeInterActST) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{361} + return file_Gameapi_proto_rawDescGZIP(), []int{363} } func (x *ReqPetHomeInterActST) GetDwUin() int32 { @@ -21593,7 +21740,7 @@ type ResPetHomeInterActST struct { func (x *ResPetHomeInterActST) Reset() { *x = ResPetHomeInterActST{} - mi := &file_Gameapi_proto_msgTypes[362] + mi := &file_Gameapi_proto_msgTypes[364] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21605,7 +21752,7 @@ func (x *ResPetHomeInterActST) String() string { func (*ResPetHomeInterActST) ProtoMessage() {} func (x *ResPetHomeInterActST) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[362] + mi := &file_Gameapi_proto_msgTypes[364] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21618,7 +21765,7 @@ func (x *ResPetHomeInterActST) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPetHomeInterActST.ProtoReflect.Descriptor instead. func (*ResPetHomeInterActST) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{362} + return file_Gameapi_proto_rawDescGZIP(), []int{364} } func (x *ResPetHomeInterActST) GetMPetHomeInterActSTs() []*PetHomeInterActST { @@ -21639,7 +21786,7 @@ type ReqShiftVisitPet struct { func (x *ReqShiftVisitPet) Reset() { *x = ReqShiftVisitPet{} - mi := &file_Gameapi_proto_msgTypes[363] + mi := &file_Gameapi_proto_msgTypes[365] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21651,7 +21798,7 @@ func (x *ReqShiftVisitPet) String() string { func (*ReqShiftVisitPet) ProtoMessage() {} func (x *ReqShiftVisitPet) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[363] + mi := &file_Gameapi_proto_msgTypes[365] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21664,7 +21811,7 @@ func (x *ReqShiftVisitPet) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqShiftVisitPet.ProtoReflect.Descriptor instead. func (*ReqShiftVisitPet) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{363} + return file_Gameapi_proto_rawDescGZIP(), []int{365} } func (x *ReqShiftVisitPet) GetTargetUin() int32 { @@ -21690,7 +21837,7 @@ type ResShiftVisitPet struct { func (x *ResShiftVisitPet) Reset() { *x = ResShiftVisitPet{} - mi := &file_Gameapi_proto_msgTypes[364] + mi := &file_Gameapi_proto_msgTypes[366] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21702,7 +21849,7 @@ func (x *ResShiftVisitPet) String() string { func (*ResShiftVisitPet) ProtoMessage() {} func (x *ResShiftVisitPet) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[364] + mi := &file_Gameapi_proto_msgTypes[366] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21715,7 +21862,7 @@ func (x *ResShiftVisitPet) ProtoReflect() protoreflect.Message { // Deprecated: Use ResShiftVisitPet.ProtoReflect.Descriptor instead. func (*ResShiftVisitPet) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{364} + return file_Gameapi_proto_rawDescGZIP(), []int{366} } func (x *ResShiftVisitPet) GetTargetUin() int32 { @@ -21778,7 +21925,7 @@ type ReqCallBackPet struct { func (x *ReqCallBackPet) Reset() { *x = ReqCallBackPet{} - mi := &file_Gameapi_proto_msgTypes[365] + mi := &file_Gameapi_proto_msgTypes[367] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21790,7 +21937,7 @@ func (x *ReqCallBackPet) String() string { func (*ReqCallBackPet) ProtoMessage() {} func (x *ReqCallBackPet) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[365] + mi := &file_Gameapi_proto_msgTypes[367] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21803,7 +21950,7 @@ func (x *ReqCallBackPet) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCallBackPet.ProtoReflect.Descriptor instead. func (*ReqCallBackPet) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{365} + return file_Gameapi_proto_rawDescGZIP(), []int{367} } func (x *ReqCallBackPet) GetDwUin() int32 { @@ -21823,7 +21970,7 @@ type ResCallBackPet struct { func (x *ResCallBackPet) Reset() { *x = ResCallBackPet{} - mi := &file_Gameapi_proto_msgTypes[366] + mi := &file_Gameapi_proto_msgTypes[368] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21835,7 +21982,7 @@ func (x *ResCallBackPet) String() string { func (*ResCallBackPet) ProtoMessage() {} func (x *ResCallBackPet) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[366] + mi := &file_Gameapi_proto_msgTypes[368] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21848,7 +21995,7 @@ func (x *ResCallBackPet) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCallBackPet.ProtoReflect.Descriptor instead. func (*ResCallBackPet) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{366} + return file_Gameapi_proto_rawDescGZIP(), []int{368} } func (x *ResCallBackPet) GetResultCode() int32 { @@ -21869,7 +22016,7 @@ type IntPack struct { func (x *IntPack) Reset() { *x = IntPack{} - mi := &file_Gameapi_proto_msgTypes[367] + mi := &file_Gameapi_proto_msgTypes[369] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21881,7 +22028,7 @@ func (x *IntPack) String() string { func (*IntPack) ProtoMessage() {} func (x *IntPack) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[367] + mi := &file_Gameapi_proto_msgTypes[369] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21894,7 +22041,7 @@ func (x *IntPack) ProtoReflect() protoreflect.Message { // Deprecated: Use IntPack.ProtoReflect.Descriptor instead. func (*IntPack) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{367} + return file_Gameapi_proto_rawDescGZIP(), []int{369} } func (x *IntPack) GetNum() int32 { @@ -21915,7 +22062,7 @@ type Item struct { func (x *Item) Reset() { *x = Item{} - mi := &file_Gameapi_proto_msgTypes[368] + mi := &file_Gameapi_proto_msgTypes[370] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21927,7 +22074,7 @@ func (x *Item) String() string { func (*Item) ProtoMessage() {} func (x *Item) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[368] + mi := &file_Gameapi_proto_msgTypes[370] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21940,7 +22087,7 @@ func (x *Item) ProtoReflect() protoreflect.Message { // Deprecated: Use Item.ProtoReflect.Descriptor instead. func (*Item) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{368} + return file_Gameapi_proto_rawDescGZIP(), []int{370} } func (x *Item) GetId() int32 { @@ -21971,7 +22118,7 @@ type UseItemRequest struct { func (x *UseItemRequest) Reset() { *x = UseItemRequest{} - mi := &file_Gameapi_proto_msgTypes[369] + mi := &file_Gameapi_proto_msgTypes[371] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21983,7 +22130,7 @@ func (x *UseItemRequest) String() string { func (*UseItemRequest) ProtoMessage() {} func (x *UseItemRequest) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[369] + mi := &file_Gameapi_proto_msgTypes[371] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21996,7 +22143,7 @@ func (x *UseItemRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UseItemRequest.ProtoReflect.Descriptor instead. func (*UseItemRequest) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{369} + return file_Gameapi_proto_rawDescGZIP(), []int{371} } func (x *UseItemRequest) GetItemId() int32 { @@ -22049,7 +22196,7 @@ type UseItemResponse struct { func (x *UseItemResponse) Reset() { *x = UseItemResponse{} - mi := &file_Gameapi_proto_msgTypes[370] + mi := &file_Gameapi_proto_msgTypes[372] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22061,7 +22208,7 @@ func (x *UseItemResponse) String() string { func (*UseItemResponse) ProtoMessage() {} func (x *UseItemResponse) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[370] + mi := &file_Gameapi_proto_msgTypes[372] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22074,7 +22221,7 @@ func (x *UseItemResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UseItemResponse.ProtoReflect.Descriptor instead. func (*UseItemResponse) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{370} + return file_Gameapi_proto_rawDescGZIP(), []int{372} } func (x *UseItemResponse) GetItemId() int32 { @@ -22129,7 +22276,7 @@ type Hello struct { func (x *Hello) Reset() { *x = Hello{} - mi := &file_Gameapi_proto_msgTypes[371] + mi := &file_Gameapi_proto_msgTypes[373] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22141,7 +22288,7 @@ func (x *Hello) String() string { func (*Hello) ProtoMessage() {} func (x *Hello) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[371] + mi := &file_Gameapi_proto_msgTypes[373] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22154,7 +22301,7 @@ func (x *Hello) ProtoReflect() protoreflect.Message { // Deprecated: Use Hello.ProtoReflect.Descriptor instead. func (*Hello) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{371} + return file_Gameapi_proto_rawDescGZIP(), []int{373} } func (x *Hello) GetName() string { @@ -22175,7 +22322,7 @@ type ReqSetEnergyMul struct { func (x *ReqSetEnergyMul) Reset() { *x = ReqSetEnergyMul{} - mi := &file_Gameapi_proto_msgTypes[372] + mi := &file_Gameapi_proto_msgTypes[374] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22187,7 +22334,7 @@ func (x *ReqSetEnergyMul) String() string { func (*ReqSetEnergyMul) ProtoMessage() {} func (x *ReqSetEnergyMul) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[372] + mi := &file_Gameapi_proto_msgTypes[374] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22200,7 +22347,7 @@ func (x *ReqSetEnergyMul) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqSetEnergyMul.ProtoReflect.Descriptor instead. func (*ReqSetEnergyMul) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{372} + return file_Gameapi_proto_rawDescGZIP(), []int{374} } func (x *ReqSetEnergyMul) GetEnergyMul() int32 { @@ -22221,7 +22368,7 @@ type ResSetEnergyMul struct { func (x *ResSetEnergyMul) Reset() { *x = ResSetEnergyMul{} - mi := &file_Gameapi_proto_msgTypes[373] + mi := &file_Gameapi_proto_msgTypes[375] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22233,7 +22380,7 @@ func (x *ResSetEnergyMul) String() string { func (*ResSetEnergyMul) ProtoMessage() {} func (x *ResSetEnergyMul) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[373] + mi := &file_Gameapi_proto_msgTypes[375] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22246,7 +22393,7 @@ func (x *ResSetEnergyMul) ProtoReflect() protoreflect.Message { // Deprecated: Use ResSetEnergyMul.ProtoReflect.Descriptor instead. func (*ResSetEnergyMul) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{373} + return file_Gameapi_proto_rawDescGZIP(), []int{375} } func (x *ResSetEnergyMul) GetResultCode() RES_CODE { @@ -22275,7 +22422,7 @@ type BaseInfo struct { func (x *BaseInfo) Reset() { *x = BaseInfo{} - mi := &file_Gameapi_proto_msgTypes[374] + mi := &file_Gameapi_proto_msgTypes[376] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22287,7 +22434,7 @@ func (x *BaseInfo) String() string { func (*BaseInfo) ProtoMessage() {} func (x *BaseInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[374] + mi := &file_Gameapi_proto_msgTypes[376] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22300,7 +22447,7 @@ func (x *BaseInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use BaseInfo.ProtoReflect.Descriptor instead. func (*BaseInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{374} + return file_Gameapi_proto_rawDescGZIP(), []int{376} } func (x *BaseInfo) GetEnergyMul() int32 { @@ -22332,7 +22479,7 @@ type ReqUserInfo struct { func (x *ReqUserInfo) Reset() { *x = ReqUserInfo{} - mi := &file_Gameapi_proto_msgTypes[375] + mi := &file_Gameapi_proto_msgTypes[377] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22344,7 +22491,7 @@ func (x *ReqUserInfo) String() string { func (*ReqUserInfo) ProtoMessage() {} func (x *ReqUserInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[375] + mi := &file_Gameapi_proto_msgTypes[377] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22357,7 +22504,7 @@ func (x *ReqUserInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqUserInfo.ProtoReflect.Descriptor instead. func (*ReqUserInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{375} + return file_Gameapi_proto_rawDescGZIP(), []int{377} } type UserInfo struct { @@ -22377,7 +22524,7 @@ type UserInfo struct { func (x *UserInfo) Reset() { *x = UserInfo{} - mi := &file_Gameapi_proto_msgTypes[376] + mi := &file_Gameapi_proto_msgTypes[378] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22389,7 +22536,7 @@ func (x *UserInfo) String() string { func (*UserInfo) ProtoMessage() {} func (x *UserInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[376] + mi := &file_Gameapi_proto_msgTypes[378] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22402,7 +22549,7 @@ func (x *UserInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use UserInfo.ProtoReflect.Descriptor instead. func (*UserInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{376} + return file_Gameapi_proto_rawDescGZIP(), []int{378} } func (x *UserInfo) GetUid() int32 { @@ -22472,7 +22619,7 @@ type ReqSetName struct { func (x *ReqSetName) Reset() { *x = ReqSetName{} - mi := &file_Gameapi_proto_msgTypes[377] + mi := &file_Gameapi_proto_msgTypes[379] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22484,7 +22631,7 @@ func (x *ReqSetName) String() string { func (*ReqSetName) ProtoMessage() {} func (x *ReqSetName) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[377] + mi := &file_Gameapi_proto_msgTypes[379] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22497,7 +22644,7 @@ func (x *ReqSetName) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqSetName.ProtoReflect.Descriptor instead. func (*ReqSetName) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{377} + return file_Gameapi_proto_rawDescGZIP(), []int{379} } func (x *ReqSetName) GetName() string { @@ -22518,7 +22665,7 @@ type ResSetName struct { func (x *ResSetName) Reset() { *x = ResSetName{} - mi := &file_Gameapi_proto_msgTypes[378] + mi := &file_Gameapi_proto_msgTypes[380] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22530,7 +22677,7 @@ func (x *ResSetName) String() string { func (*ResSetName) ProtoMessage() {} func (x *ResSetName) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[378] + mi := &file_Gameapi_proto_msgTypes[380] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22543,7 +22690,7 @@ func (x *ResSetName) ProtoReflect() protoreflect.Message { // Deprecated: Use ResSetName.ProtoReflect.Descriptor instead. func (*ResSetName) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{378} + return file_Gameapi_proto_rawDescGZIP(), []int{380} } func (x *ResSetName) GetResultCode() RES_CODE { @@ -22571,7 +22718,7 @@ type ReqBuyEnergy struct { func (x *ReqBuyEnergy) Reset() { *x = ReqBuyEnergy{} - mi := &file_Gameapi_proto_msgTypes[379] + mi := &file_Gameapi_proto_msgTypes[381] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22583,7 +22730,7 @@ func (x *ReqBuyEnergy) String() string { func (*ReqBuyEnergy) ProtoMessage() {} func (x *ReqBuyEnergy) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[379] + mi := &file_Gameapi_proto_msgTypes[381] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22596,7 +22743,7 @@ func (x *ReqBuyEnergy) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqBuyEnergy.ProtoReflect.Descriptor instead. func (*ReqBuyEnergy) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{379} + return file_Gameapi_proto_rawDescGZIP(), []int{381} } func (x *ReqBuyEnergy) GetEnergy() int32 { @@ -22617,7 +22764,7 @@ type ResBuyEnergy struct { func (x *ResBuyEnergy) Reset() { *x = ResBuyEnergy{} - mi := &file_Gameapi_proto_msgTypes[380] + mi := &file_Gameapi_proto_msgTypes[382] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22629,7 +22776,7 @@ func (x *ResBuyEnergy) String() string { func (*ResBuyEnergy) ProtoMessage() {} func (x *ResBuyEnergy) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[380] + mi := &file_Gameapi_proto_msgTypes[382] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22642,7 +22789,7 @@ func (x *ResBuyEnergy) ProtoReflect() protoreflect.Message { // Deprecated: Use ResBuyEnergy.ProtoReflect.Descriptor instead. func (*ResBuyEnergy) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{380} + return file_Gameapi_proto_rawDescGZIP(), []int{382} } func (x *ResBuyEnergy) GetCode() RES_CODE { @@ -22669,7 +22816,7 @@ type ReqGetHandbookReward struct { func (x *ReqGetHandbookReward) Reset() { *x = ReqGetHandbookReward{} - mi := &file_Gameapi_proto_msgTypes[381] + mi := &file_Gameapi_proto_msgTypes[383] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22681,7 +22828,7 @@ func (x *ReqGetHandbookReward) String() string { func (*ReqGetHandbookReward) ProtoMessage() {} func (x *ReqGetHandbookReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[381] + mi := &file_Gameapi_proto_msgTypes[383] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22694,7 +22841,7 @@ func (x *ReqGetHandbookReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGetHandbookReward.ProtoReflect.Descriptor instead. func (*ReqGetHandbookReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{381} + return file_Gameapi_proto_rawDescGZIP(), []int{383} } func (x *ReqGetHandbookReward) GetChessId() int32 { @@ -22715,7 +22862,7 @@ type HandbookInfo struct { func (x *HandbookInfo) Reset() { *x = HandbookInfo{} - mi := &file_Gameapi_proto_msgTypes[382] + mi := &file_Gameapi_proto_msgTypes[384] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22727,7 +22874,7 @@ func (x *HandbookInfo) String() string { func (*HandbookInfo) ProtoMessage() {} func (x *HandbookInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[382] + mi := &file_Gameapi_proto_msgTypes[384] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22740,7 +22887,7 @@ func (x *HandbookInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use HandbookInfo.ProtoReflect.Descriptor instead. func (*HandbookInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{382} + return file_Gameapi_proto_rawDescGZIP(), []int{384} } func (x *HandbookInfo) GetChessId() int32 { @@ -22767,7 +22914,7 @@ type Handbook struct { func (x *Handbook) Reset() { *x = Handbook{} - mi := &file_Gameapi_proto_msgTypes[383] + mi := &file_Gameapi_proto_msgTypes[385] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22779,7 +22926,7 @@ func (x *Handbook) String() string { func (*Handbook) ProtoMessage() {} func (x *Handbook) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[383] + mi := &file_Gameapi_proto_msgTypes[385] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22792,7 +22939,7 @@ func (x *Handbook) ProtoReflect() protoreflect.Message { // Deprecated: Use Handbook.ProtoReflect.Descriptor instead. func (*Handbook) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{383} + return file_Gameapi_proto_rawDescGZIP(), []int{385} } func (x *Handbook) GetHandbooks() []*HandbookInfo { @@ -22813,7 +22960,7 @@ type ResGetHandbookReward struct { func (x *ResGetHandbookReward) Reset() { *x = ResGetHandbookReward{} - mi := &file_Gameapi_proto_msgTypes[384] + mi := &file_Gameapi_proto_msgTypes[386] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22825,7 +22972,7 @@ func (x *ResGetHandbookReward) String() string { func (*ResGetHandbookReward) ProtoMessage() {} func (x *ResGetHandbookReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[384] + mi := &file_Gameapi_proto_msgTypes[386] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22838,7 +22985,7 @@ func (x *ResGetHandbookReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGetHandbookReward.ProtoReflect.Descriptor instead. func (*ResGetHandbookReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{384} + return file_Gameapi_proto_rawDescGZIP(), []int{386} } func (x *ResGetHandbookReward) GetCode() RES_CODE { @@ -22866,7 +23013,7 @@ type ReqRewardOrder struct { func (x *ReqRewardOrder) Reset() { *x = ReqRewardOrder{} - mi := &file_Gameapi_proto_msgTypes[385] + mi := &file_Gameapi_proto_msgTypes[387] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22878,7 +23025,7 @@ func (x *ReqRewardOrder) String() string { func (*ReqRewardOrder) ProtoMessage() {} func (x *ReqRewardOrder) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[385] + mi := &file_Gameapi_proto_msgTypes[387] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22891,7 +23038,7 @@ func (x *ReqRewardOrder) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqRewardOrder.ProtoReflect.Descriptor instead. func (*ReqRewardOrder) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{385} + return file_Gameapi_proto_rawDescGZIP(), []int{387} } func (x *ReqRewardOrder) GetOrderId() int32 { @@ -22919,7 +23066,7 @@ type ResRewardOrder struct { func (x *ResRewardOrder) Reset() { *x = ResRewardOrder{} - mi := &file_Gameapi_proto_msgTypes[386] + mi := &file_Gameapi_proto_msgTypes[388] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22931,7 +23078,7 @@ func (x *ResRewardOrder) String() string { func (*ResRewardOrder) ProtoMessage() {} func (x *ResRewardOrder) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[386] + mi := &file_Gameapi_proto_msgTypes[388] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22944,7 +23091,7 @@ func (x *ResRewardOrder) ProtoReflect() protoreflect.Message { // Deprecated: Use ResRewardOrder.ProtoReflect.Descriptor instead. func (*ResRewardOrder) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{386} + return file_Gameapi_proto_rawDescGZIP(), []int{388} } func (x *ResRewardOrder) GetCode() RES_CODE { @@ -22973,7 +23120,7 @@ type Order struct { func (x *Order) Reset() { *x = Order{} - mi := &file_Gameapi_proto_msgTypes[387] + mi := &file_Gameapi_proto_msgTypes[389] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22985,7 +23132,7 @@ func (x *Order) String() string { func (*Order) ProtoMessage() {} func (x *Order) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[387] + mi := &file_Gameapi_proto_msgTypes[389] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22998,7 +23145,7 @@ func (x *Order) ProtoReflect() protoreflect.Message { // Deprecated: Use Order.ProtoReflect.Descriptor instead. func (*Order) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{387} + return file_Gameapi_proto_rawDescGZIP(), []int{389} } func (x *Order) GetId() int32 { @@ -23032,7 +23179,7 @@ type ResOrderList struct { func (x *ResOrderList) Reset() { *x = ResOrderList{} - mi := &file_Gameapi_proto_msgTypes[388] + mi := &file_Gameapi_proto_msgTypes[390] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23044,7 +23191,7 @@ func (x *ResOrderList) String() string { func (*ResOrderList) ProtoMessage() {} func (x *ResOrderList) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[388] + mi := &file_Gameapi_proto_msgTypes[390] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23057,7 +23204,7 @@ func (x *ResOrderList) ProtoReflect() protoreflect.Message { // Deprecated: Use ResOrderList.ProtoReflect.Descriptor instead. func (*ResOrderList) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{388} + return file_Gameapi_proto_rawDescGZIP(), []int{390} } func (x *ResOrderList) GetOrderList() []*Order { @@ -23079,7 +23226,7 @@ type ResDecorateInfo struct { func (x *ResDecorateInfo) Reset() { *x = ResDecorateInfo{} - mi := &file_Gameapi_proto_msgTypes[389] + mi := &file_Gameapi_proto_msgTypes[391] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23091,7 +23238,7 @@ func (x *ResDecorateInfo) String() string { func (*ResDecorateInfo) ProtoMessage() {} func (x *ResDecorateInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[389] + mi := &file_Gameapi_proto_msgTypes[391] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23104,7 +23251,7 @@ func (x *ResDecorateInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ResDecorateInfo.ProtoReflect.Descriptor instead. func (*ResDecorateInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{389} + return file_Gameapi_proto_rawDescGZIP(), []int{391} } func (x *ResDecorateInfo) GetAreaId() int32 { @@ -23133,7 +23280,7 @@ type ReqDecorate struct { func (x *ReqDecorate) Reset() { *x = ReqDecorate{} - mi := &file_Gameapi_proto_msgTypes[390] + mi := &file_Gameapi_proto_msgTypes[392] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23145,7 +23292,7 @@ func (x *ReqDecorate) String() string { func (*ReqDecorate) ProtoMessage() {} func (x *ReqDecorate) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[390] + mi := &file_Gameapi_proto_msgTypes[392] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23158,7 +23305,7 @@ func (x *ReqDecorate) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqDecorate.ProtoReflect.Descriptor instead. func (*ReqDecorate) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{390} + return file_Gameapi_proto_rawDescGZIP(), []int{392} } func (x *ReqDecorate) GetAreaId() int32 { @@ -23186,7 +23333,7 @@ type ResDecorate struct { func (x *ResDecorate) Reset() { *x = ResDecorate{} - mi := &file_Gameapi_proto_msgTypes[391] + mi := &file_Gameapi_proto_msgTypes[393] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23198,7 +23345,7 @@ func (x *ResDecorate) String() string { func (*ResDecorate) ProtoMessage() {} func (x *ResDecorate) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[391] + mi := &file_Gameapi_proto_msgTypes[393] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23211,7 +23358,7 @@ func (x *ResDecorate) ProtoReflect() protoreflect.Message { // Deprecated: Use ResDecorate.ProtoReflect.Descriptor instead. func (*ResDecorate) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{391} + return file_Gameapi_proto_rawDescGZIP(), []int{393} } func (x *ResDecorate) GetCode() RES_CODE { @@ -23237,7 +23384,7 @@ type ReqDecorateAll struct { func (x *ReqDecorateAll) Reset() { *x = ReqDecorateAll{} - mi := &file_Gameapi_proto_msgTypes[392] + mi := &file_Gameapi_proto_msgTypes[394] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23249,7 +23396,7 @@ func (x *ReqDecorateAll) String() string { func (*ReqDecorateAll) ProtoMessage() {} func (x *ReqDecorateAll) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[392] + mi := &file_Gameapi_proto_msgTypes[394] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23262,7 +23409,7 @@ func (x *ReqDecorateAll) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqDecorateAll.ProtoReflect.Descriptor instead. func (*ReqDecorateAll) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{392} + return file_Gameapi_proto_rawDescGZIP(), []int{394} } type ResDecorateAll struct { @@ -23276,7 +23423,7 @@ type ResDecorateAll struct { func (x *ResDecorateAll) Reset() { *x = ResDecorateAll{} - mi := &file_Gameapi_proto_msgTypes[393] + mi := &file_Gameapi_proto_msgTypes[395] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23288,7 +23435,7 @@ func (x *ResDecorateAll) String() string { func (*ResDecorateAll) ProtoMessage() {} func (x *ResDecorateAll) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[393] + mi := &file_Gameapi_proto_msgTypes[395] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23301,7 +23448,7 @@ func (x *ResDecorateAll) ProtoReflect() protoreflect.Message { // Deprecated: Use ResDecorateAll.ProtoReflect.Descriptor instead. func (*ResDecorateAll) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{393} + return file_Gameapi_proto_rawDescGZIP(), []int{395} } func (x *ResDecorateAll) GetCode() RES_CODE { @@ -23330,7 +23477,7 @@ type ReqGmCommand struct { func (x *ReqGmCommand) Reset() { *x = ReqGmCommand{} - mi := &file_Gameapi_proto_msgTypes[394] + mi := &file_Gameapi_proto_msgTypes[396] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23342,7 +23489,7 @@ func (x *ReqGmCommand) String() string { func (*ReqGmCommand) ProtoMessage() {} func (x *ReqGmCommand) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[394] + mi := &file_Gameapi_proto_msgTypes[396] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23355,7 +23502,7 @@ func (x *ReqGmCommand) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGmCommand.ProtoReflect.Descriptor instead. func (*ReqGmCommand) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{394} + return file_Gameapi_proto_rawDescGZIP(), []int{396} } func (x *ReqGmCommand) GetCommand() string { @@ -23384,7 +23531,7 @@ type Card struct { func (x *Card) Reset() { *x = Card{} - mi := &file_Gameapi_proto_msgTypes[395] + mi := &file_Gameapi_proto_msgTypes[397] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23396,7 +23543,7 @@ func (x *Card) String() string { func (*Card) ProtoMessage() {} func (x *Card) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[395] + mi := &file_Gameapi_proto_msgTypes[397] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23409,7 +23556,7 @@ func (x *Card) ProtoReflect() protoreflect.Message { // Deprecated: Use Card.ProtoReflect.Descriptor instead. func (*Card) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{395} + return file_Gameapi_proto_rawDescGZIP(), []int{397} } func (x *Card) GetId() int32 { @@ -23434,7 +23581,7 @@ type ReqCardInfo struct { func (x *ReqCardInfo) Reset() { *x = ReqCardInfo{} - mi := &file_Gameapi_proto_msgTypes[396] + mi := &file_Gameapi_proto_msgTypes[398] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23446,7 +23593,7 @@ func (x *ReqCardInfo) String() string { func (*ReqCardInfo) ProtoMessage() {} func (x *ReqCardInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[396] + mi := &file_Gameapi_proto_msgTypes[398] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23459,7 +23606,7 @@ func (x *ReqCardInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCardInfo.ProtoReflect.Descriptor instead. func (*ReqCardInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{396} + return file_Gameapi_proto_rawDescGZIP(), []int{398} } type ResCardInfo struct { @@ -23482,7 +23629,7 @@ type ResCardInfo struct { func (x *ResCardInfo) Reset() { *x = ResCardInfo{} - mi := &file_Gameapi_proto_msgTypes[397] + mi := &file_Gameapi_proto_msgTypes[399] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23494,7 +23641,7 @@ func (x *ResCardInfo) String() string { func (*ResCardInfo) ProtoMessage() {} func (x *ResCardInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[397] + mi := &file_Gameapi_proto_msgTypes[399] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23507,7 +23654,7 @@ func (x *ResCardInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCardInfo.ProtoReflect.Descriptor instead. func (*ResCardInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{397} + return file_Gameapi_proto_rawDescGZIP(), []int{399} } func (x *ResCardInfo) GetCardList() []*Card { @@ -23601,7 +23748,7 @@ type ResNotifyCardTimes struct { func (x *ResNotifyCardTimes) Reset() { *x = ResNotifyCardTimes{} - mi := &file_Gameapi_proto_msgTypes[398] + mi := &file_Gameapi_proto_msgTypes[400] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23613,7 +23760,7 @@ func (x *ResNotifyCardTimes) String() string { func (*ResNotifyCardTimes) ProtoMessage() {} func (x *ResNotifyCardTimes) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[398] + mi := &file_Gameapi_proto_msgTypes[400] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23626,7 +23773,7 @@ func (x *ResNotifyCardTimes) ProtoReflect() protoreflect.Message { // Deprecated: Use ResNotifyCardTimes.ProtoReflect.Descriptor instead. func (*ResNotifyCardTimes) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{398} + return file_Gameapi_proto_rawDescGZIP(), []int{400} } func (x *ResNotifyCardTimes) GetExTimes() int32 { @@ -23676,7 +23823,7 @@ type ReqMasterCard struct { func (x *ReqMasterCard) Reset() { *x = ReqMasterCard{} - mi := &file_Gameapi_proto_msgTypes[399] + mi := &file_Gameapi_proto_msgTypes[401] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23688,7 +23835,7 @@ func (x *ReqMasterCard) String() string { func (*ReqMasterCard) ProtoMessage() {} func (x *ReqMasterCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[399] + mi := &file_Gameapi_proto_msgTypes[401] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23701,7 +23848,7 @@ func (x *ReqMasterCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqMasterCard.ProtoReflect.Descriptor instead. func (*ReqMasterCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{399} + return file_Gameapi_proto_rawDescGZIP(), []int{401} } func (x *ReqMasterCard) GetId() int32 { @@ -23731,7 +23878,7 @@ type ResMasterCard struct { func (x *ResMasterCard) Reset() { *x = ResMasterCard{} - mi := &file_Gameapi_proto_msgTypes[400] + mi := &file_Gameapi_proto_msgTypes[402] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23743,7 +23890,7 @@ func (x *ResMasterCard) String() string { func (*ResMasterCard) ProtoMessage() {} func (x *ResMasterCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[400] + mi := &file_Gameapi_proto_msgTypes[402] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23756,7 +23903,7 @@ func (x *ResMasterCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ResMasterCard.ProtoReflect.Descriptor instead. func (*ResMasterCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{400} + return file_Gameapi_proto_rawDescGZIP(), []int{402} } func (x *ResMasterCard) GetCode() RES_CODE { @@ -23798,7 +23945,7 @@ type ReqCardCollectReward struct { func (x *ReqCardCollectReward) Reset() { *x = ReqCardCollectReward{} - mi := &file_Gameapi_proto_msgTypes[401] + mi := &file_Gameapi_proto_msgTypes[403] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23810,7 +23957,7 @@ func (x *ReqCardCollectReward) String() string { func (*ReqCardCollectReward) ProtoMessage() {} func (x *ReqCardCollectReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[401] + mi := &file_Gameapi_proto_msgTypes[403] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23823,7 +23970,7 @@ func (x *ReqCardCollectReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCardCollectReward.ProtoReflect.Descriptor instead. func (*ReqCardCollectReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{401} + return file_Gameapi_proto_rawDescGZIP(), []int{403} } func (x *ReqCardCollectReward) GetColor() int32 { @@ -23844,7 +23991,7 @@ type ResCardCollectReward struct { func (x *ResCardCollectReward) Reset() { *x = ResCardCollectReward{} - mi := &file_Gameapi_proto_msgTypes[402] + mi := &file_Gameapi_proto_msgTypes[404] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23856,7 +24003,7 @@ func (x *ResCardCollectReward) String() string { func (*ResCardCollectReward) ProtoMessage() {} func (x *ResCardCollectReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[402] + mi := &file_Gameapi_proto_msgTypes[404] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23869,7 +24016,7 @@ func (x *ResCardCollectReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCardCollectReward.ProtoReflect.Descriptor instead. func (*ResCardCollectReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{402} + return file_Gameapi_proto_rawDescGZIP(), []int{404} } func (x *ResCardCollectReward) GetCode() RES_CODE { @@ -23897,7 +24044,7 @@ type ReqExStarReward struct { func (x *ReqExStarReward) Reset() { *x = ReqExStarReward{} - mi := &file_Gameapi_proto_msgTypes[403] + mi := &file_Gameapi_proto_msgTypes[405] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23909,7 +24056,7 @@ func (x *ReqExStarReward) String() string { func (*ReqExStarReward) ProtoMessage() {} func (x *ReqExStarReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[403] + mi := &file_Gameapi_proto_msgTypes[405] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23922,7 +24069,7 @@ func (x *ReqExStarReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqExStarReward.ProtoReflect.Descriptor instead. func (*ReqExStarReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{403} + return file_Gameapi_proto_rawDescGZIP(), []int{405} } func (x *ReqExStarReward) GetId() int32 { @@ -23943,7 +24090,7 @@ type ResExStarReward struct { func (x *ResExStarReward) Reset() { *x = ResExStarReward{} - mi := &file_Gameapi_proto_msgTypes[404] + mi := &file_Gameapi_proto_msgTypes[406] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23955,7 +24102,7 @@ func (x *ResExStarReward) String() string { func (*ResExStarReward) ProtoMessage() {} func (x *ResExStarReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[404] + mi := &file_Gameapi_proto_msgTypes[406] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23968,7 +24115,7 @@ func (x *ResExStarReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResExStarReward.ProtoReflect.Descriptor instead. func (*ResExStarReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{404} + return file_Gameapi_proto_rawDescGZIP(), []int{406} } func (x *ResExStarReward) GetCode() RES_CODE { @@ -23994,7 +24141,7 @@ type ReqAllCollectReward struct { func (x *ReqAllCollectReward) Reset() { *x = ReqAllCollectReward{} - mi := &file_Gameapi_proto_msgTypes[405] + mi := &file_Gameapi_proto_msgTypes[407] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24006,7 +24153,7 @@ func (x *ReqAllCollectReward) String() string { func (*ReqAllCollectReward) ProtoMessage() {} func (x *ReqAllCollectReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[405] + mi := &file_Gameapi_proto_msgTypes[407] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24019,7 +24166,7 @@ func (x *ReqAllCollectReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAllCollectReward.ProtoReflect.Descriptor instead. func (*ReqAllCollectReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{405} + return file_Gameapi_proto_rawDescGZIP(), []int{407} } type ResAllCollectReward struct { @@ -24033,7 +24180,7 @@ type ResAllCollectReward struct { func (x *ResAllCollectReward) Reset() { *x = ResAllCollectReward{} - mi := &file_Gameapi_proto_msgTypes[406] + mi := &file_Gameapi_proto_msgTypes[408] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24045,7 +24192,7 @@ func (x *ResAllCollectReward) String() string { func (*ResAllCollectReward) ProtoMessage() {} func (x *ResAllCollectReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[406] + mi := &file_Gameapi_proto_msgTypes[408] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24058,7 +24205,7 @@ func (x *ResAllCollectReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResAllCollectReward.ProtoReflect.Descriptor instead. func (*ResAllCollectReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{406} + return file_Gameapi_proto_rawDescGZIP(), []int{408} } func (x *ResAllCollectReward) GetCode() RES_CODE { @@ -24087,7 +24234,7 @@ type ReqCardGive struct { func (x *ReqCardGive) Reset() { *x = ReqCardGive{} - mi := &file_Gameapi_proto_msgTypes[407] + mi := &file_Gameapi_proto_msgTypes[409] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24099,7 +24246,7 @@ func (x *ReqCardGive) String() string { func (*ReqCardGive) ProtoMessage() {} func (x *ReqCardGive) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[407] + mi := &file_Gameapi_proto_msgTypes[409] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24112,7 +24259,7 @@ func (x *ReqCardGive) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCardGive.ProtoReflect.Descriptor instead. func (*ReqCardGive) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{407} + return file_Gameapi_proto_rawDescGZIP(), []int{409} } func (x *ReqCardGive) GetUid() []int32 { @@ -24140,7 +24287,7 @@ type ResCardGive struct { func (x *ResCardGive) Reset() { *x = ResCardGive{} - mi := &file_Gameapi_proto_msgTypes[408] + mi := &file_Gameapi_proto_msgTypes[410] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24152,7 +24299,7 @@ func (x *ResCardGive) String() string { func (*ResCardGive) ProtoMessage() {} func (x *ResCardGive) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[408] + mi := &file_Gameapi_proto_msgTypes[410] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24165,7 +24312,7 @@ func (x *ResCardGive) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCardGive.ProtoReflect.Descriptor instead. func (*ResCardGive) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{408} + return file_Gameapi_proto_rawDescGZIP(), []int{410} } func (x *ResCardGive) GetCode() RES_CODE { @@ -24193,7 +24340,7 @@ type ReqAgreeCardGive struct { func (x *ReqAgreeCardGive) Reset() { *x = ReqAgreeCardGive{} - mi := &file_Gameapi_proto_msgTypes[409] + mi := &file_Gameapi_proto_msgTypes[411] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24205,7 +24352,7 @@ func (x *ReqAgreeCardGive) String() string { func (*ReqAgreeCardGive) ProtoMessage() {} func (x *ReqAgreeCardGive) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[409] + mi := &file_Gameapi_proto_msgTypes[411] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24218,7 +24365,7 @@ func (x *ReqAgreeCardGive) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAgreeCardGive.ProtoReflect.Descriptor instead. func (*ReqAgreeCardGive) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{409} + return file_Gameapi_proto_rawDescGZIP(), []int{411} } func (x *ReqAgreeCardGive) GetId() string { @@ -24240,7 +24387,7 @@ type ResAgreeCardGive struct { func (x *ResAgreeCardGive) Reset() { *x = ResAgreeCardGive{} - mi := &file_Gameapi_proto_msgTypes[410] + mi := &file_Gameapi_proto_msgTypes[412] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24252,7 +24399,7 @@ func (x *ResAgreeCardGive) String() string { func (*ResAgreeCardGive) ProtoMessage() {} func (x *ResAgreeCardGive) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[410] + mi := &file_Gameapi_proto_msgTypes[412] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24265,7 +24412,7 @@ func (x *ResAgreeCardGive) ProtoReflect() protoreflect.Message { // Deprecated: Use ResAgreeCardGive.ProtoReflect.Descriptor instead. func (*ResAgreeCardGive) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{410} + return file_Gameapi_proto_rawDescGZIP(), []int{412} } func (x *ResAgreeCardGive) GetCode() RES_CODE { @@ -24300,7 +24447,7 @@ type ReqRefuseCardGive struct { func (x *ReqRefuseCardGive) Reset() { *x = ReqRefuseCardGive{} - mi := &file_Gameapi_proto_msgTypes[411] + mi := &file_Gameapi_proto_msgTypes[413] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24312,7 +24459,7 @@ func (x *ReqRefuseCardGive) String() string { func (*ReqRefuseCardGive) ProtoMessage() {} func (x *ReqRefuseCardGive) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[411] + mi := &file_Gameapi_proto_msgTypes[413] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24325,7 +24472,7 @@ func (x *ReqRefuseCardGive) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqRefuseCardGive.ProtoReflect.Descriptor instead. func (*ReqRefuseCardGive) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{411} + return file_Gameapi_proto_rawDescGZIP(), []int{413} } func (x *ReqRefuseCardGive) GetId() string { @@ -24347,7 +24494,7 @@ type ResRefuseCardGive struct { func (x *ResRefuseCardGive) Reset() { *x = ResRefuseCardGive{} - mi := &file_Gameapi_proto_msgTypes[412] + mi := &file_Gameapi_proto_msgTypes[414] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24359,7 +24506,7 @@ func (x *ResRefuseCardGive) String() string { func (*ResRefuseCardGive) ProtoMessage() {} func (x *ResRefuseCardGive) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[412] + mi := &file_Gameapi_proto_msgTypes[414] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24372,7 +24519,7 @@ func (x *ResRefuseCardGive) ProtoReflect() protoreflect.Message { // Deprecated: Use ResRefuseCardGive.ProtoReflect.Descriptor instead. func (*ResRefuseCardGive) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{412} + return file_Gameapi_proto_rawDescGZIP(), []int{414} } func (x *ResRefuseCardGive) GetCode() RES_CODE { @@ -24408,7 +24555,7 @@ type ReqCardSend struct { func (x *ReqCardSend) Reset() { *x = ReqCardSend{} - mi := &file_Gameapi_proto_msgTypes[413] + mi := &file_Gameapi_proto_msgTypes[415] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24420,7 +24567,7 @@ func (x *ReqCardSend) String() string { func (*ReqCardSend) ProtoMessage() {} func (x *ReqCardSend) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[413] + mi := &file_Gameapi_proto_msgTypes[415] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24433,7 +24580,7 @@ func (x *ReqCardSend) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCardSend.ProtoReflect.Descriptor instead. func (*ReqCardSend) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{413} + return file_Gameapi_proto_rawDescGZIP(), []int{415} } func (x *ReqCardSend) GetUid() int32 { @@ -24461,7 +24608,7 @@ type ResCardSend struct { func (x *ResCardSend) Reset() { *x = ResCardSend{} - mi := &file_Gameapi_proto_msgTypes[414] + mi := &file_Gameapi_proto_msgTypes[416] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24473,7 +24620,7 @@ func (x *ResCardSend) String() string { func (*ResCardSend) ProtoMessage() {} func (x *ResCardSend) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[414] + mi := &file_Gameapi_proto_msgTypes[416] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24486,7 +24633,7 @@ func (x *ResCardSend) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCardSend.ProtoReflect.Descriptor instead. func (*ResCardSend) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{414} + return file_Gameapi_proto_rawDescGZIP(), []int{416} } func (x *ResCardSend) GetCode() RES_CODE { @@ -24515,7 +24662,7 @@ type ReqCardExchange struct { func (x *ReqCardExchange) Reset() { *x = ReqCardExchange{} - mi := &file_Gameapi_proto_msgTypes[415] + mi := &file_Gameapi_proto_msgTypes[417] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24527,7 +24674,7 @@ func (x *ReqCardExchange) String() string { func (*ReqCardExchange) ProtoMessage() {} func (x *ReqCardExchange) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[415] + mi := &file_Gameapi_proto_msgTypes[417] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24540,7 +24687,7 @@ func (x *ReqCardExchange) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCardExchange.ProtoReflect.Descriptor instead. func (*ReqCardExchange) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{415} + return file_Gameapi_proto_rawDescGZIP(), []int{417} } func (x *ReqCardExchange) GetUid() int32 { @@ -24568,7 +24715,7 @@ type ResCardExchange struct { func (x *ResCardExchange) Reset() { *x = ResCardExchange{} - mi := &file_Gameapi_proto_msgTypes[416] + mi := &file_Gameapi_proto_msgTypes[418] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24580,7 +24727,7 @@ func (x *ResCardExchange) String() string { func (*ResCardExchange) ProtoMessage() {} func (x *ResCardExchange) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[416] + mi := &file_Gameapi_proto_msgTypes[418] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24593,7 +24740,7 @@ func (x *ResCardExchange) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCardExchange.ProtoReflect.Descriptor instead. func (*ResCardExchange) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{416} + return file_Gameapi_proto_rawDescGZIP(), []int{418} } func (x *ResCardExchange) GetCode() RES_CODE { @@ -24622,7 +24769,7 @@ type ReqSelectCardExchange struct { func (x *ReqSelectCardExchange) Reset() { *x = ReqSelectCardExchange{} - mi := &file_Gameapi_proto_msgTypes[417] + mi := &file_Gameapi_proto_msgTypes[419] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24634,7 +24781,7 @@ func (x *ReqSelectCardExchange) String() string { func (*ReqSelectCardExchange) ProtoMessage() {} func (x *ReqSelectCardExchange) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[417] + mi := &file_Gameapi_proto_msgTypes[419] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24647,7 +24794,7 @@ func (x *ReqSelectCardExchange) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqSelectCardExchange.ProtoReflect.Descriptor instead. func (*ReqSelectCardExchange) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{417} + return file_Gameapi_proto_rawDescGZIP(), []int{419} } func (x *ReqSelectCardExchange) GetId() string { @@ -24676,7 +24823,7 @@ type ResSelectCardExchange struct { func (x *ResSelectCardExchange) Reset() { *x = ResSelectCardExchange{} - mi := &file_Gameapi_proto_msgTypes[418] + mi := &file_Gameapi_proto_msgTypes[420] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24688,7 +24835,7 @@ func (x *ResSelectCardExchange) String() string { func (*ResSelectCardExchange) ProtoMessage() {} func (x *ResSelectCardExchange) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[418] + mi := &file_Gameapi_proto_msgTypes[420] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24701,7 +24848,7 @@ func (x *ResSelectCardExchange) ProtoReflect() protoreflect.Message { // Deprecated: Use ResSelectCardExchange.ProtoReflect.Descriptor instead. func (*ResSelectCardExchange) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{418} + return file_Gameapi_proto_rawDescGZIP(), []int{420} } func (x *ResSelectCardExchange) GetCode() RES_CODE { @@ -24736,7 +24883,7 @@ type ReqAgreeCardExchange struct { func (x *ReqAgreeCardExchange) Reset() { *x = ReqAgreeCardExchange{} - mi := &file_Gameapi_proto_msgTypes[419] + mi := &file_Gameapi_proto_msgTypes[421] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24748,7 +24895,7 @@ func (x *ReqAgreeCardExchange) String() string { func (*ReqAgreeCardExchange) ProtoMessage() {} func (x *ReqAgreeCardExchange) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[419] + mi := &file_Gameapi_proto_msgTypes[421] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24761,7 +24908,7 @@ func (x *ReqAgreeCardExchange) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAgreeCardExchange.ProtoReflect.Descriptor instead. func (*ReqAgreeCardExchange) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{419} + return file_Gameapi_proto_rawDescGZIP(), []int{421} } func (x *ReqAgreeCardExchange) GetId() string { @@ -24783,7 +24930,7 @@ type ResAgreeCardExchange struct { func (x *ResAgreeCardExchange) Reset() { *x = ResAgreeCardExchange{} - mi := &file_Gameapi_proto_msgTypes[420] + mi := &file_Gameapi_proto_msgTypes[422] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24795,7 +24942,7 @@ func (x *ResAgreeCardExchange) String() string { func (*ResAgreeCardExchange) ProtoMessage() {} func (x *ResAgreeCardExchange) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[420] + mi := &file_Gameapi_proto_msgTypes[422] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24808,7 +24955,7 @@ func (x *ResAgreeCardExchange) ProtoReflect() protoreflect.Message { // Deprecated: Use ResAgreeCardExchange.ProtoReflect.Descriptor instead. func (*ResAgreeCardExchange) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{420} + return file_Gameapi_proto_rawDescGZIP(), []int{422} } func (x *ResAgreeCardExchange) GetCode() RES_CODE { @@ -24843,7 +24990,7 @@ type ReqRefuseCardSelect struct { func (x *ReqRefuseCardSelect) Reset() { *x = ReqRefuseCardSelect{} - mi := &file_Gameapi_proto_msgTypes[421] + mi := &file_Gameapi_proto_msgTypes[423] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24855,7 +25002,7 @@ func (x *ReqRefuseCardSelect) String() string { func (*ReqRefuseCardSelect) ProtoMessage() {} func (x *ReqRefuseCardSelect) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[421] + mi := &file_Gameapi_proto_msgTypes[423] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24868,7 +25015,7 @@ func (x *ReqRefuseCardSelect) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqRefuseCardSelect.ProtoReflect.Descriptor instead. func (*ReqRefuseCardSelect) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{421} + return file_Gameapi_proto_rawDescGZIP(), []int{423} } func (x *ReqRefuseCardSelect) GetId() string { @@ -24890,7 +25037,7 @@ type ResRefuseCardSelect struct { func (x *ResRefuseCardSelect) Reset() { *x = ResRefuseCardSelect{} - mi := &file_Gameapi_proto_msgTypes[422] + mi := &file_Gameapi_proto_msgTypes[424] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24902,7 +25049,7 @@ func (x *ResRefuseCardSelect) String() string { func (*ResRefuseCardSelect) ProtoMessage() {} func (x *ResRefuseCardSelect) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[422] + mi := &file_Gameapi_proto_msgTypes[424] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24915,7 +25062,7 @@ func (x *ResRefuseCardSelect) ProtoReflect() protoreflect.Message { // Deprecated: Use ResRefuseCardSelect.ProtoReflect.Descriptor instead. func (*ResRefuseCardSelect) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{422} + return file_Gameapi_proto_rawDescGZIP(), []int{424} } func (x *ResRefuseCardSelect) GetCode() RES_CODE { @@ -24950,7 +25097,7 @@ type ReqRefuseCardExchange struct { func (x *ReqRefuseCardExchange) Reset() { *x = ReqRefuseCardExchange{} - mi := &file_Gameapi_proto_msgTypes[423] + mi := &file_Gameapi_proto_msgTypes[425] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24962,7 +25109,7 @@ func (x *ReqRefuseCardExchange) String() string { func (*ReqRefuseCardExchange) ProtoMessage() {} func (x *ReqRefuseCardExchange) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[423] + mi := &file_Gameapi_proto_msgTypes[425] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24975,7 +25122,7 @@ func (x *ReqRefuseCardExchange) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqRefuseCardExchange.ProtoReflect.Descriptor instead. func (*ReqRefuseCardExchange) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{423} + return file_Gameapi_proto_rawDescGZIP(), []int{425} } func (x *ReqRefuseCardExchange) GetId() string { @@ -24997,7 +25144,7 @@ type ResRefuseCardExchange struct { func (x *ResRefuseCardExchange) Reset() { *x = ResRefuseCardExchange{} - mi := &file_Gameapi_proto_msgTypes[424] + mi := &file_Gameapi_proto_msgTypes[426] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25009,7 +25156,7 @@ func (x *ResRefuseCardExchange) String() string { func (*ResRefuseCardExchange) ProtoMessage() {} func (x *ResRefuseCardExchange) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[424] + mi := &file_Gameapi_proto_msgTypes[426] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25022,7 +25169,7 @@ func (x *ResRefuseCardExchange) ProtoReflect() protoreflect.Message { // Deprecated: Use ResRefuseCardExchange.ProtoReflect.Descriptor instead. func (*ResRefuseCardExchange) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{424} + return file_Gameapi_proto_rawDescGZIP(), []int{426} } func (x *ResRefuseCardExchange) GetCode() RES_CODE { @@ -25057,7 +25204,7 @@ type ReqGetFriendCard struct { func (x *ReqGetFriendCard) Reset() { *x = ReqGetFriendCard{} - mi := &file_Gameapi_proto_msgTypes[425] + mi := &file_Gameapi_proto_msgTypes[427] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25069,7 +25216,7 @@ func (x *ReqGetFriendCard) String() string { func (*ReqGetFriendCard) ProtoMessage() {} func (x *ReqGetFriendCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[425] + mi := &file_Gameapi_proto_msgTypes[427] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25082,7 +25229,7 @@ func (x *ReqGetFriendCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGetFriendCard.ProtoReflect.Descriptor instead. func (*ReqGetFriendCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{425} + return file_Gameapi_proto_rawDescGZIP(), []int{427} } func (x *ReqGetFriendCard) GetId() string { @@ -25105,7 +25252,7 @@ type ResGetFriendCard struct { func (x *ResGetFriendCard) Reset() { *x = ResGetFriendCard{} - mi := &file_Gameapi_proto_msgTypes[426] + mi := &file_Gameapi_proto_msgTypes[428] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25117,7 +25264,7 @@ func (x *ResGetFriendCard) String() string { func (*ResGetFriendCard) ProtoMessage() {} func (x *ResGetFriendCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[426] + mi := &file_Gameapi_proto_msgTypes[428] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25130,7 +25277,7 @@ func (x *ResGetFriendCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGetFriendCard.ProtoReflect.Descriptor instead. func (*ResGetFriendCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{426} + return file_Gameapi_proto_rawDescGZIP(), []int{428} } func (x *ResGetFriendCard) GetCode() RES_CODE { @@ -25170,7 +25317,7 @@ type ReqGetGoldCard struct { func (x *ReqGetGoldCard) Reset() { *x = ReqGetGoldCard{} - mi := &file_Gameapi_proto_msgTypes[427] + mi := &file_Gameapi_proto_msgTypes[429] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25182,7 +25329,7 @@ func (x *ReqGetGoldCard) String() string { func (*ReqGetGoldCard) ProtoMessage() {} func (x *ReqGetGoldCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[427] + mi := &file_Gameapi_proto_msgTypes[429] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25195,7 +25342,7 @@ func (x *ReqGetGoldCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGetGoldCard.ProtoReflect.Descriptor instead. func (*ReqGetGoldCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{427} + return file_Gameapi_proto_rawDescGZIP(), []int{429} } type ResGetGoldCard struct { @@ -25209,7 +25356,7 @@ type ResGetGoldCard struct { func (x *ResGetGoldCard) Reset() { *x = ResGetGoldCard{} - mi := &file_Gameapi_proto_msgTypes[428] + mi := &file_Gameapi_proto_msgTypes[430] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25221,7 +25368,7 @@ func (x *ResGetGoldCard) String() string { func (*ResGetGoldCard) ProtoMessage() {} func (x *ResGetGoldCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[428] + mi := &file_Gameapi_proto_msgTypes[430] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25234,7 +25381,7 @@ func (x *ResGetGoldCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGetGoldCard.ProtoReflect.Descriptor instead. func (*ResGetGoldCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{428} + return file_Gameapi_proto_rawDescGZIP(), []int{430} } func (x *ResGetGoldCard) GetFour() int32 { @@ -25262,7 +25409,7 @@ type ReqGuideReward struct { func (x *ReqGuideReward) Reset() { *x = ReqGuideReward{} - mi := &file_Gameapi_proto_msgTypes[429] + mi := &file_Gameapi_proto_msgTypes[431] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25274,7 +25421,7 @@ func (x *ReqGuideReward) String() string { func (*ReqGuideReward) ProtoMessage() {} func (x *ReqGuideReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[429] + mi := &file_Gameapi_proto_msgTypes[431] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25287,7 +25434,7 @@ func (x *ReqGuideReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGuideReward.ProtoReflect.Descriptor instead. func (*ReqGuideReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{429} + return file_Gameapi_proto_rawDescGZIP(), []int{431} } func (x *ReqGuideReward) GetId() int32 { @@ -25308,7 +25455,7 @@ type ResGuideReward struct { func (x *ResGuideReward) Reset() { *x = ResGuideReward{} - mi := &file_Gameapi_proto_msgTypes[430] + mi := &file_Gameapi_proto_msgTypes[432] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25320,7 +25467,7 @@ func (x *ResGuideReward) String() string { func (*ResGuideReward) ProtoMessage() {} func (x *ResGuideReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[430] + mi := &file_Gameapi_proto_msgTypes[432] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25333,7 +25480,7 @@ func (x *ResGuideReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGuideReward.ProtoReflect.Descriptor instead. func (*ResGuideReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{430} + return file_Gameapi_proto_rawDescGZIP(), []int{432} } func (x *ResGuideReward) GetCode() RES_CODE { @@ -25360,7 +25507,7 @@ type ResGuildInfo struct { func (x *ResGuildInfo) Reset() { *x = ResGuildInfo{} - mi := &file_Gameapi_proto_msgTypes[431] + mi := &file_Gameapi_proto_msgTypes[433] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25372,7 +25519,7 @@ func (x *ResGuildInfo) String() string { func (*ResGuildInfo) ProtoMessage() {} func (x *ResGuildInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[431] + mi := &file_Gameapi_proto_msgTypes[433] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25385,7 +25532,7 @@ func (x *ResGuildInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGuildInfo.ProtoReflect.Descriptor instead. func (*ResGuildInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{431} + return file_Gameapi_proto_rawDescGZIP(), []int{433} } func (x *ResGuildInfo) GetReward() map[int32]int32 { @@ -25408,7 +25555,7 @@ type ResItemPop struct { func (x *ResItemPop) Reset() { *x = ResItemPop{} - mi := &file_Gameapi_proto_msgTypes[432] + mi := &file_Gameapi_proto_msgTypes[434] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25420,7 +25567,7 @@ func (x *ResItemPop) String() string { func (*ResItemPop) ProtoMessage() {} func (x *ResItemPop) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[432] + mi := &file_Gameapi_proto_msgTypes[434] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25433,7 +25580,7 @@ func (x *ResItemPop) ProtoReflect() protoreflect.Message { // Deprecated: Use ResItemPop.ProtoReflect.Descriptor instead. func (*ResItemPop) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{432} + return file_Gameapi_proto_rawDescGZIP(), []int{434} } func (x *ResItemPop) GetId() int32 { @@ -25475,7 +25622,7 @@ type ItemInfo struct { func (x *ItemInfo) Reset() { *x = ItemInfo{} - mi := &file_Gameapi_proto_msgTypes[433] + mi := &file_Gameapi_proto_msgTypes[435] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25487,7 +25634,7 @@ func (x *ItemInfo) String() string { func (*ItemInfo) ProtoMessage() {} func (x *ItemInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[433] + mi := &file_Gameapi_proto_msgTypes[435] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25500,7 +25647,7 @@ func (x *ItemInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ItemInfo.ProtoReflect.Descriptor instead. func (*ItemInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{433} + return file_Gameapi_proto_rawDescGZIP(), []int{435} } func (x *ItemInfo) GetId() int32 { @@ -25528,7 +25675,7 @@ type CardPack struct { func (x *CardPack) Reset() { *x = CardPack{} - mi := &file_Gameapi_proto_msgTypes[434] + mi := &file_Gameapi_proto_msgTypes[436] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25540,7 +25687,7 @@ func (x *CardPack) String() string { func (*CardPack) ProtoMessage() {} func (x *CardPack) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[434] + mi := &file_Gameapi_proto_msgTypes[436] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25553,7 +25700,7 @@ func (x *CardPack) ProtoReflect() protoreflect.Message { // Deprecated: Use CardPack.ProtoReflect.Descriptor instead. func (*CardPack) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{434} + return file_Gameapi_proto_rawDescGZIP(), []int{436} } func (x *CardPack) GetId() int32 { @@ -25584,7 +25731,7 @@ type ResDailyTask struct { func (x *ResDailyTask) Reset() { *x = ResDailyTask{} - mi := &file_Gameapi_proto_msgTypes[435] + mi := &file_Gameapi_proto_msgTypes[437] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25596,7 +25743,7 @@ func (x *ResDailyTask) String() string { func (*ResDailyTask) ProtoMessage() {} func (x *ResDailyTask) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[435] + mi := &file_Gameapi_proto_msgTypes[437] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25609,7 +25756,7 @@ func (x *ResDailyTask) ProtoReflect() protoreflect.Message { // Deprecated: Use ResDailyTask.ProtoReflect.Descriptor instead. func (*ResDailyTask) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{435} + return file_Gameapi_proto_rawDescGZIP(), []int{437} } func (x *ResDailyTask) GetWeekReward() map[int32]*DailyWeek { @@ -25659,7 +25806,7 @@ type DailyWeek struct { func (x *DailyWeek) Reset() { *x = DailyWeek{} - mi := &file_Gameapi_proto_msgTypes[436] + mi := &file_Gameapi_proto_msgTypes[438] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25671,7 +25818,7 @@ func (x *DailyWeek) String() string { func (*DailyWeek) ProtoMessage() {} func (x *DailyWeek) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[436] + mi := &file_Gameapi_proto_msgTypes[438] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25684,7 +25831,7 @@ func (x *DailyWeek) ProtoReflect() protoreflect.Message { // Deprecated: Use DailyWeek.ProtoReflect.Descriptor instead. func (*DailyWeek) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{436} + return file_Gameapi_proto_rawDescGZIP(), []int{438} } func (x *DailyWeek) GetItems() []*ItemInfo { @@ -25721,7 +25868,7 @@ type DailyTask struct { func (x *DailyTask) Reset() { *x = DailyTask{} - mi := &file_Gameapi_proto_msgTypes[437] + mi := &file_Gameapi_proto_msgTypes[439] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25733,7 +25880,7 @@ func (x *DailyTask) String() string { func (*DailyTask) ProtoMessage() {} func (x *DailyTask) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[437] + mi := &file_Gameapi_proto_msgTypes[439] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25746,7 +25893,7 @@ func (x *DailyTask) ProtoReflect() protoreflect.Message { // Deprecated: Use DailyTask.ProtoReflect.Descriptor instead. func (*DailyTask) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{437} + return file_Gameapi_proto_rawDescGZIP(), []int{439} } func (x *DailyTask) GetStatus() int32 { @@ -25791,7 +25938,7 @@ type QuestProgress struct { func (x *QuestProgress) Reset() { *x = QuestProgress{} - mi := &file_Gameapi_proto_msgTypes[438] + mi := &file_Gameapi_proto_msgTypes[440] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25803,7 +25950,7 @@ func (x *QuestProgress) String() string { func (*QuestProgress) ProtoMessage() {} func (x *QuestProgress) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[438] + mi := &file_Gameapi_proto_msgTypes[440] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25816,7 +25963,7 @@ func (x *QuestProgress) ProtoReflect() protoreflect.Message { // Deprecated: Use QuestProgress.ProtoReflect.Descriptor instead. func (*QuestProgress) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{438} + return file_Gameapi_proto_rawDescGZIP(), []int{440} } func (x *QuestProgress) GetLabel() string { @@ -25865,7 +26012,7 @@ type ReqGetDailyTaskReward struct { func (x *ReqGetDailyTaskReward) Reset() { *x = ReqGetDailyTaskReward{} - mi := &file_Gameapi_proto_msgTypes[439] + mi := &file_Gameapi_proto_msgTypes[441] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25877,7 +26024,7 @@ func (x *ReqGetDailyTaskReward) String() string { func (*ReqGetDailyTaskReward) ProtoMessage() {} func (x *ReqGetDailyTaskReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[439] + mi := &file_Gameapi_proto_msgTypes[441] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25890,7 +26037,7 @@ func (x *ReqGetDailyTaskReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGetDailyTaskReward.ProtoReflect.Descriptor instead. func (*ReqGetDailyTaskReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{439} + return file_Gameapi_proto_rawDescGZIP(), []int{441} } func (x *ReqGetDailyTaskReward) GetId() int32 { @@ -25911,7 +26058,7 @@ type ResGetDailyTaskReward struct { func (x *ResGetDailyTaskReward) Reset() { *x = ResGetDailyTaskReward{} - mi := &file_Gameapi_proto_msgTypes[440] + mi := &file_Gameapi_proto_msgTypes[442] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25923,7 +26070,7 @@ func (x *ResGetDailyTaskReward) String() string { func (*ResGetDailyTaskReward) ProtoMessage() {} func (x *ResGetDailyTaskReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[440] + mi := &file_Gameapi_proto_msgTypes[442] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25936,7 +26083,7 @@ func (x *ResGetDailyTaskReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGetDailyTaskReward.ProtoReflect.Descriptor instead. func (*ResGetDailyTaskReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{440} + return file_Gameapi_proto_rawDescGZIP(), []int{442} } func (x *ResGetDailyTaskReward) GetCode() RES_CODE { @@ -25964,7 +26111,7 @@ type ReqGetDailyWeekReward struct { func (x *ReqGetDailyWeekReward) Reset() { *x = ReqGetDailyWeekReward{} - mi := &file_Gameapi_proto_msgTypes[441] + mi := &file_Gameapi_proto_msgTypes[443] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25976,7 +26123,7 @@ func (x *ReqGetDailyWeekReward) String() string { func (*ReqGetDailyWeekReward) ProtoMessage() {} func (x *ReqGetDailyWeekReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[441] + mi := &file_Gameapi_proto_msgTypes[443] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25989,7 +26136,7 @@ func (x *ReqGetDailyWeekReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGetDailyWeekReward.ProtoReflect.Descriptor instead. func (*ReqGetDailyWeekReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{441} + return file_Gameapi_proto_rawDescGZIP(), []int{443} } func (x *ReqGetDailyWeekReward) GetId() int32 { @@ -26010,7 +26157,7 @@ type ResGetDailyWeekReward struct { func (x *ResGetDailyWeekReward) Reset() { *x = ResGetDailyWeekReward{} - mi := &file_Gameapi_proto_msgTypes[442] + mi := &file_Gameapi_proto_msgTypes[444] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26022,7 +26169,7 @@ func (x *ResGetDailyWeekReward) String() string { func (*ResGetDailyWeekReward) ProtoMessage() {} func (x *ResGetDailyWeekReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[442] + mi := &file_Gameapi_proto_msgTypes[444] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26035,7 +26182,7 @@ func (x *ResGetDailyWeekReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGetDailyWeekReward.ProtoReflect.Descriptor instead. func (*ResGetDailyWeekReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{442} + return file_Gameapi_proto_rawDescGZIP(), []int{444} } func (x *ResGetDailyWeekReward) GetCode() RES_CODE { @@ -26060,7 +26207,7 @@ type ReqDailyUnlock struct { func (x *ReqDailyUnlock) Reset() { *x = ReqDailyUnlock{} - mi := &file_Gameapi_proto_msgTypes[443] + mi := &file_Gameapi_proto_msgTypes[445] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26072,7 +26219,7 @@ func (x *ReqDailyUnlock) String() string { func (*ReqDailyUnlock) ProtoMessage() {} func (x *ReqDailyUnlock) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[443] + mi := &file_Gameapi_proto_msgTypes[445] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26085,7 +26232,7 @@ func (x *ReqDailyUnlock) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqDailyUnlock.ProtoReflect.Descriptor instead. func (*ReqDailyUnlock) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{443} + return file_Gameapi_proto_rawDescGZIP(), []int{445} } type ResDailyUnlock struct { @@ -26099,7 +26246,7 @@ type ResDailyUnlock struct { func (x *ResDailyUnlock) Reset() { *x = ResDailyUnlock{} - mi := &file_Gameapi_proto_msgTypes[444] + mi := &file_Gameapi_proto_msgTypes[446] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26111,7 +26258,7 @@ func (x *ResDailyUnlock) String() string { func (*ResDailyUnlock) ProtoMessage() {} func (x *ResDailyUnlock) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[444] + mi := &file_Gameapi_proto_msgTypes[446] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26124,7 +26271,7 @@ func (x *ResDailyUnlock) ProtoReflect() protoreflect.Message { // Deprecated: Use ResDailyUnlock.ProtoReflect.Descriptor instead. func (*ResDailyUnlock) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{444} + return file_Gameapi_proto_rawDescGZIP(), []int{446} } func (x *ResDailyUnlock) GetCode() RES_CODE { @@ -26152,7 +26299,7 @@ type ResFaceInfo struct { func (x *ResFaceInfo) Reset() { *x = ResFaceInfo{} - mi := &file_Gameapi_proto_msgTypes[445] + mi := &file_Gameapi_proto_msgTypes[447] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26164,7 +26311,7 @@ func (x *ResFaceInfo) String() string { func (*ResFaceInfo) ProtoMessage() {} func (x *ResFaceInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[445] + mi := &file_Gameapi_proto_msgTypes[447] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26177,7 +26324,7 @@ func (x *ResFaceInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFaceInfo.ProtoReflect.Descriptor instead. func (*ResFaceInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{445} + return file_Gameapi_proto_rawDescGZIP(), []int{447} } func (x *ResFaceInfo) GetFaceList() []*FaceInfo { @@ -26205,7 +26352,7 @@ type FaceInfo struct { func (x *FaceInfo) Reset() { *x = FaceInfo{} - mi := &file_Gameapi_proto_msgTypes[446] + mi := &file_Gameapi_proto_msgTypes[448] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26217,7 +26364,7 @@ func (x *FaceInfo) String() string { func (*FaceInfo) ProtoMessage() {} func (x *FaceInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[446] + mi := &file_Gameapi_proto_msgTypes[448] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26230,7 +26377,7 @@ func (x *FaceInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use FaceInfo.ProtoReflect.Descriptor instead. func (*FaceInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{446} + return file_Gameapi_proto_rawDescGZIP(), []int{448} } func (x *FaceInfo) GetId() int32 { @@ -26257,7 +26404,7 @@ type ReqSetFace struct { func (x *ReqSetFace) Reset() { *x = ReqSetFace{} - mi := &file_Gameapi_proto_msgTypes[447] + mi := &file_Gameapi_proto_msgTypes[449] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26269,7 +26416,7 @@ func (x *ReqSetFace) String() string { func (*ReqSetFace) ProtoMessage() {} func (x *ReqSetFace) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[447] + mi := &file_Gameapi_proto_msgTypes[449] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26282,7 +26429,7 @@ func (x *ReqSetFace) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqSetFace.ProtoReflect.Descriptor instead. func (*ReqSetFace) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{447} + return file_Gameapi_proto_rawDescGZIP(), []int{449} } func (x *ReqSetFace) GetFace() int32 { @@ -26303,7 +26450,7 @@ type ResSetFace struct { func (x *ResSetFace) Reset() { *x = ResSetFace{} - mi := &file_Gameapi_proto_msgTypes[448] + mi := &file_Gameapi_proto_msgTypes[450] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26315,7 +26462,7 @@ func (x *ResSetFace) String() string { func (*ResSetFace) ProtoMessage() {} func (x *ResSetFace) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[448] + mi := &file_Gameapi_proto_msgTypes[450] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26328,7 +26475,7 @@ func (x *ResSetFace) ProtoReflect() protoreflect.Message { // Deprecated: Use ResSetFace.ProtoReflect.Descriptor instead. func (*ResSetFace) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{448} + return file_Gameapi_proto_rawDescGZIP(), []int{450} } func (x *ResSetFace) GetCode() RES_CODE { @@ -26356,7 +26503,7 @@ type ResAvatarInfo struct { func (x *ResAvatarInfo) Reset() { *x = ResAvatarInfo{} - mi := &file_Gameapi_proto_msgTypes[449] + mi := &file_Gameapi_proto_msgTypes[451] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26368,7 +26515,7 @@ func (x *ResAvatarInfo) String() string { func (*ResAvatarInfo) ProtoMessage() {} func (x *ResAvatarInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[449] + mi := &file_Gameapi_proto_msgTypes[451] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26381,7 +26528,7 @@ func (x *ResAvatarInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ResAvatarInfo.ProtoReflect.Descriptor instead. func (*ResAvatarInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{449} + return file_Gameapi_proto_rawDescGZIP(), []int{451} } func (x *ResAvatarInfo) GetAvatarList() []*AvatarInfo { @@ -26409,7 +26556,7 @@ type AvatarInfo struct { func (x *AvatarInfo) Reset() { *x = AvatarInfo{} - mi := &file_Gameapi_proto_msgTypes[450] + mi := &file_Gameapi_proto_msgTypes[452] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26421,7 +26568,7 @@ func (x *AvatarInfo) String() string { func (*AvatarInfo) ProtoMessage() {} func (x *AvatarInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[450] + mi := &file_Gameapi_proto_msgTypes[452] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26434,7 +26581,7 @@ func (x *AvatarInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use AvatarInfo.ProtoReflect.Descriptor instead. func (*AvatarInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{450} + return file_Gameapi_proto_rawDescGZIP(), []int{452} } func (x *AvatarInfo) GetId() int32 { @@ -26461,7 +26608,7 @@ type ReqSetAvatar struct { func (x *ReqSetAvatar) Reset() { *x = ReqSetAvatar{} - mi := &file_Gameapi_proto_msgTypes[451] + mi := &file_Gameapi_proto_msgTypes[453] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26473,7 +26620,7 @@ func (x *ReqSetAvatar) String() string { func (*ReqSetAvatar) ProtoMessage() {} func (x *ReqSetAvatar) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[451] + mi := &file_Gameapi_proto_msgTypes[453] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26486,7 +26633,7 @@ func (x *ReqSetAvatar) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqSetAvatar.ProtoReflect.Descriptor instead. func (*ReqSetAvatar) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{451} + return file_Gameapi_proto_rawDescGZIP(), []int{453} } func (x *ReqSetAvatar) GetAvatar() int32 { @@ -26507,7 +26654,7 @@ type ResSetAvatar struct { func (x *ResSetAvatar) Reset() { *x = ResSetAvatar{} - mi := &file_Gameapi_proto_msgTypes[452] + mi := &file_Gameapi_proto_msgTypes[454] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26519,7 +26666,7 @@ func (x *ResSetAvatar) String() string { func (*ResSetAvatar) ProtoMessage() {} func (x *ResSetAvatar) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[452] + mi := &file_Gameapi_proto_msgTypes[454] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26532,7 +26679,7 @@ func (x *ResSetAvatar) ProtoReflect() protoreflect.Message { // Deprecated: Use ResSetAvatar.ProtoReflect.Descriptor instead. func (*ResSetAvatar) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{452} + return file_Gameapi_proto_rawDescGZIP(), []int{454} } func (x *ResSetAvatar) GetCode() RES_CODE { @@ -26563,7 +26710,7 @@ type ResSevenLogin struct { func (x *ResSevenLogin) Reset() { *x = ResSevenLogin{} - mi := &file_Gameapi_proto_msgTypes[453] + mi := &file_Gameapi_proto_msgTypes[455] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26575,7 +26722,7 @@ func (x *ResSevenLogin) String() string { func (*ResSevenLogin) ProtoMessage() {} func (x *ResSevenLogin) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[453] + mi := &file_Gameapi_proto_msgTypes[455] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26588,7 +26735,7 @@ func (x *ResSevenLogin) ProtoReflect() protoreflect.Message { // Deprecated: Use ResSevenLogin.ProtoReflect.Descriptor instead. func (*ResSevenLogin) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{453} + return file_Gameapi_proto_rawDescGZIP(), []int{455} } func (x *ResSevenLogin) GetWeekReward() []*SevenLoginReward { @@ -26633,7 +26780,7 @@ type SevenLoginReward struct { func (x *SevenLoginReward) Reset() { *x = SevenLoginReward{} - mi := &file_Gameapi_proto_msgTypes[454] + mi := &file_Gameapi_proto_msgTypes[456] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26645,7 +26792,7 @@ func (x *SevenLoginReward) String() string { func (*SevenLoginReward) ProtoMessage() {} func (x *SevenLoginReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[454] + mi := &file_Gameapi_proto_msgTypes[456] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26658,7 +26805,7 @@ func (x *SevenLoginReward) ProtoReflect() protoreflect.Message { // Deprecated: Use SevenLoginReward.ProtoReflect.Descriptor instead. func (*SevenLoginReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{454} + return file_Gameapi_proto_rawDescGZIP(), []int{456} } func (x *SevenLoginReward) GetItem1() []*ItemInfo { @@ -26707,7 +26854,7 @@ type ReqGetSevenLoginReward struct { func (x *ReqGetSevenLoginReward) Reset() { *x = ReqGetSevenLoginReward{} - mi := &file_Gameapi_proto_msgTypes[455] + mi := &file_Gameapi_proto_msgTypes[457] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26719,7 +26866,7 @@ func (x *ReqGetSevenLoginReward) String() string { func (*ReqGetSevenLoginReward) ProtoMessage() {} func (x *ReqGetSevenLoginReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[455] + mi := &file_Gameapi_proto_msgTypes[457] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26732,7 +26879,7 @@ func (x *ReqGetSevenLoginReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGetSevenLoginReward.ProtoReflect.Descriptor instead. func (*ReqGetSevenLoginReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{455} + return file_Gameapi_proto_rawDescGZIP(), []int{457} } func (x *ReqGetSevenLoginReward) GetId() int32 { @@ -26753,7 +26900,7 @@ type ResGetSevenLoginReward struct { func (x *ResGetSevenLoginReward) Reset() { *x = ResGetSevenLoginReward{} - mi := &file_Gameapi_proto_msgTypes[456] + mi := &file_Gameapi_proto_msgTypes[458] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26765,7 +26912,7 @@ func (x *ResGetSevenLoginReward) String() string { func (*ResGetSevenLoginReward) ProtoMessage() {} func (x *ResGetSevenLoginReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[456] + mi := &file_Gameapi_proto_msgTypes[458] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26778,7 +26925,7 @@ func (x *ResGetSevenLoginReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGetSevenLoginReward.ProtoReflect.Descriptor instead. func (*ResGetSevenLoginReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{456} + return file_Gameapi_proto_rawDescGZIP(), []int{458} } func (x *ResGetSevenLoginReward) GetCode() RES_CODE { @@ -26806,7 +26953,7 @@ type ReqGetMonthLoginReward struct { func (x *ReqGetMonthLoginReward) Reset() { *x = ReqGetMonthLoginReward{} - mi := &file_Gameapi_proto_msgTypes[457] + mi := &file_Gameapi_proto_msgTypes[459] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26818,7 +26965,7 @@ func (x *ReqGetMonthLoginReward) String() string { func (*ReqGetMonthLoginReward) ProtoMessage() {} func (x *ReqGetMonthLoginReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[457] + mi := &file_Gameapi_proto_msgTypes[459] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26831,7 +26978,7 @@ func (x *ReqGetMonthLoginReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGetMonthLoginReward.ProtoReflect.Descriptor instead. func (*ReqGetMonthLoginReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{457} + return file_Gameapi_proto_rawDescGZIP(), []int{459} } func (x *ReqGetMonthLoginReward) GetId() int32 { @@ -26852,7 +26999,7 @@ type ResGetMonthLoginReward struct { func (x *ResGetMonthLoginReward) Reset() { *x = ResGetMonthLoginReward{} - mi := &file_Gameapi_proto_msgTypes[458] + mi := &file_Gameapi_proto_msgTypes[460] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26864,7 +27011,7 @@ func (x *ResGetMonthLoginReward) String() string { func (*ResGetMonthLoginReward) ProtoMessage() {} func (x *ResGetMonthLoginReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[458] + mi := &file_Gameapi_proto_msgTypes[460] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26877,7 +27024,7 @@ func (x *ResGetMonthLoginReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGetMonthLoginReward.ProtoReflect.Descriptor instead. func (*ResGetMonthLoginReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{458} + return file_Gameapi_proto_rawDescGZIP(), []int{460} } func (x *ResGetMonthLoginReward) GetCode() RES_CODE { @@ -26905,7 +27052,7 @@ type ResActivity struct { func (x *ResActivity) Reset() { *x = ResActivity{} - mi := &file_Gameapi_proto_msgTypes[459] + mi := &file_Gameapi_proto_msgTypes[461] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26917,7 +27064,7 @@ func (x *ResActivity) String() string { func (*ResActivity) ProtoMessage() {} func (x *ResActivity) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[459] + mi := &file_Gameapi_proto_msgTypes[461] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26930,7 +27077,7 @@ func (x *ResActivity) ProtoReflect() protoreflect.Message { // Deprecated: Use ResActivity.ProtoReflect.Descriptor instead. func (*ResActivity) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{459} + return file_Gameapi_proto_rawDescGZIP(), []int{461} } func (x *ResActivity) GetActiveList() []*ActivityInfo { @@ -26956,7 +27103,7 @@ type ActivityInfo struct { func (x *ActivityInfo) Reset() { *x = ActivityInfo{} - mi := &file_Gameapi_proto_msgTypes[460] + mi := &file_Gameapi_proto_msgTypes[462] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26968,7 +27115,7 @@ func (x *ActivityInfo) String() string { func (*ActivityInfo) ProtoMessage() {} func (x *ActivityInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[460] + mi := &file_Gameapi_proto_msgTypes[462] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26981,7 +27128,7 @@ func (x *ActivityInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ActivityInfo.ProtoReflect.Descriptor instead. func (*ActivityInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{460} + return file_Gameapi_proto_rawDescGZIP(), []int{462} } func (x *ActivityInfo) GetId() int32 { @@ -27042,7 +27189,7 @@ type ReqLimitEvent struct { func (x *ReqLimitEvent) Reset() { *x = ReqLimitEvent{} - mi := &file_Gameapi_proto_msgTypes[461] + mi := &file_Gameapi_proto_msgTypes[463] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27054,7 +27201,7 @@ func (x *ReqLimitEvent) String() string { func (*ReqLimitEvent) ProtoMessage() {} func (x *ReqLimitEvent) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[461] + mi := &file_Gameapi_proto_msgTypes[463] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27067,7 +27214,7 @@ func (x *ReqLimitEvent) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqLimitEvent.ProtoReflect.Descriptor instead. func (*ReqLimitEvent) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{461} + return file_Gameapi_proto_rawDescGZIP(), []int{463} } type ResLimitEvent struct { @@ -27080,7 +27227,7 @@ type ResLimitEvent struct { func (x *ResLimitEvent) Reset() { *x = ResLimitEvent{} - mi := &file_Gameapi_proto_msgTypes[462] + mi := &file_Gameapi_proto_msgTypes[464] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27092,7 +27239,7 @@ func (x *ResLimitEvent) String() string { func (*ResLimitEvent) ProtoMessage() {} func (x *ResLimitEvent) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[462] + mi := &file_Gameapi_proto_msgTypes[464] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27105,7 +27252,7 @@ func (x *ResLimitEvent) ProtoReflect() protoreflect.Message { // Deprecated: Use ResLimitEvent.ProtoReflect.Descriptor instead. func (*ResLimitEvent) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{462} + return file_Gameapi_proto_rawDescGZIP(), []int{464} } func (x *ResLimitEvent) GetLimitEventList() map[int32]*LimitEvent { @@ -27126,7 +27273,7 @@ type ResLimitEventProgress struct { func (x *ResLimitEventProgress) Reset() { *x = ResLimitEventProgress{} - mi := &file_Gameapi_proto_msgTypes[463] + mi := &file_Gameapi_proto_msgTypes[465] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27138,7 +27285,7 @@ func (x *ResLimitEventProgress) String() string { func (*ResLimitEventProgress) ProtoMessage() {} func (x *ResLimitEventProgress) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[463] + mi := &file_Gameapi_proto_msgTypes[465] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27151,7 +27298,7 @@ func (x *ResLimitEventProgress) ProtoReflect() protoreflect.Message { // Deprecated: Use ResLimitEventProgress.ProtoReflect.Descriptor instead. func (*ResLimitEventProgress) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{463} + return file_Gameapi_proto_rawDescGZIP(), []int{465} } func (x *ResLimitEventProgress) GetProgress() int32 { @@ -27178,7 +27325,7 @@ type ReqLimitEventReward struct { func (x *ReqLimitEventReward) Reset() { *x = ReqLimitEventReward{} - mi := &file_Gameapi_proto_msgTypes[464] + mi := &file_Gameapi_proto_msgTypes[466] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27190,7 +27337,7 @@ func (x *ReqLimitEventReward) String() string { func (*ReqLimitEventReward) ProtoMessage() {} func (x *ReqLimitEventReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[464] + mi := &file_Gameapi_proto_msgTypes[466] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27203,7 +27350,7 @@ func (x *ReqLimitEventReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqLimitEventReward.ProtoReflect.Descriptor instead. func (*ReqLimitEventReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{464} + return file_Gameapi_proto_rawDescGZIP(), []int{466} } func (x *ReqLimitEventReward) GetId() int32 { @@ -27224,7 +27371,7 @@ type ResLimitEventReward struct { func (x *ResLimitEventReward) Reset() { *x = ResLimitEventReward{} - mi := &file_Gameapi_proto_msgTypes[465] + mi := &file_Gameapi_proto_msgTypes[467] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27236,7 +27383,7 @@ func (x *ResLimitEventReward) String() string { func (*ResLimitEventReward) ProtoMessage() {} func (x *ResLimitEventReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[465] + mi := &file_Gameapi_proto_msgTypes[467] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27249,7 +27396,7 @@ func (x *ResLimitEventReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResLimitEventReward.ProtoReflect.Descriptor instead. func (*ResLimitEventReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{465} + return file_Gameapi_proto_rawDescGZIP(), []int{467} } func (x *ResLimitEventReward) GetCode() RES_CODE { @@ -27276,7 +27423,7 @@ type ReqSelectLimitEvent struct { func (x *ReqSelectLimitEvent) Reset() { *x = ReqSelectLimitEvent{} - mi := &file_Gameapi_proto_msgTypes[466] + mi := &file_Gameapi_proto_msgTypes[468] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27288,7 +27435,7 @@ func (x *ReqSelectLimitEvent) String() string { func (*ReqSelectLimitEvent) ProtoMessage() {} func (x *ReqSelectLimitEvent) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[466] + mi := &file_Gameapi_proto_msgTypes[468] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27301,7 +27448,7 @@ func (x *ReqSelectLimitEvent) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqSelectLimitEvent.ProtoReflect.Descriptor instead. func (*ReqSelectLimitEvent) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{466} + return file_Gameapi_proto_rawDescGZIP(), []int{468} } func (x *ReqSelectLimitEvent) GetId() int32 { @@ -27322,7 +27469,7 @@ type ResSelectLimitEvent struct { func (x *ResSelectLimitEvent) Reset() { *x = ResSelectLimitEvent{} - mi := &file_Gameapi_proto_msgTypes[467] + mi := &file_Gameapi_proto_msgTypes[469] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27334,7 +27481,7 @@ func (x *ResSelectLimitEvent) String() string { func (*ResSelectLimitEvent) ProtoMessage() {} func (x *ResSelectLimitEvent) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[467] + mi := &file_Gameapi_proto_msgTypes[469] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27347,7 +27494,7 @@ func (x *ResSelectLimitEvent) ProtoReflect() protoreflect.Message { // Deprecated: Use ResSelectLimitEvent.ProtoReflect.Descriptor instead. func (*ResSelectLimitEvent) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{467} + return file_Gameapi_proto_rawDescGZIP(), []int{469} } func (x *ResSelectLimitEvent) GetCode() RES_CODE { @@ -27375,7 +27522,7 @@ type LimitEvent struct { func (x *LimitEvent) Reset() { *x = LimitEvent{} - mi := &file_Gameapi_proto_msgTypes[468] + mi := &file_Gameapi_proto_msgTypes[470] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27387,7 +27534,7 @@ func (x *LimitEvent) String() string { func (*LimitEvent) ProtoMessage() {} func (x *LimitEvent) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[468] + mi := &file_Gameapi_proto_msgTypes[470] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27400,7 +27547,7 @@ func (x *LimitEvent) ProtoReflect() protoreflect.Message { // Deprecated: Use LimitEvent.ProtoReflect.Descriptor instead. func (*LimitEvent) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{468} + return file_Gameapi_proto_rawDescGZIP(), []int{470} } func (x *LimitEvent) GetEndTime() int32 { @@ -27430,7 +27577,7 @@ type LimitEventNotify struct { func (x *LimitEventNotify) Reset() { *x = LimitEventNotify{} - mi := &file_Gameapi_proto_msgTypes[469] + mi := &file_Gameapi_proto_msgTypes[471] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27442,7 +27589,7 @@ func (x *LimitEventNotify) String() string { func (*LimitEventNotify) ProtoMessage() {} func (x *LimitEventNotify) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[469] + mi := &file_Gameapi_proto_msgTypes[471] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27455,7 +27602,7 @@ func (x *LimitEventNotify) ProtoReflect() protoreflect.Message { // Deprecated: Use LimitEventNotify.ProtoReflect.Descriptor instead. func (*LimitEventNotify) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{469} + return file_Gameapi_proto_rawDescGZIP(), []int{471} } func (x *LimitEventNotify) GetId() int32 { @@ -27494,7 +27641,7 @@ type ReqLimitSenceReward struct { func (x *ReqLimitSenceReward) Reset() { *x = ReqLimitSenceReward{} - mi := &file_Gameapi_proto_msgTypes[470] + mi := &file_Gameapi_proto_msgTypes[472] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27506,7 +27653,7 @@ func (x *ReqLimitSenceReward) String() string { func (*ReqLimitSenceReward) ProtoMessage() {} func (x *ReqLimitSenceReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[470] + mi := &file_Gameapi_proto_msgTypes[472] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27519,7 +27666,7 @@ func (x *ReqLimitSenceReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqLimitSenceReward.ProtoReflect.Descriptor instead. func (*ReqLimitSenceReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{470} + return file_Gameapi_proto_rawDescGZIP(), []int{472} } type ResLimitSenceReward struct { @@ -27533,7 +27680,7 @@ type ResLimitSenceReward struct { func (x *ResLimitSenceReward) Reset() { *x = ResLimitSenceReward{} - mi := &file_Gameapi_proto_msgTypes[471] + mi := &file_Gameapi_proto_msgTypes[473] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27545,7 +27692,7 @@ func (x *ResLimitSenceReward) String() string { func (*ResLimitSenceReward) ProtoMessage() {} func (x *ResLimitSenceReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[471] + mi := &file_Gameapi_proto_msgTypes[473] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27558,7 +27705,7 @@ func (x *ResLimitSenceReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResLimitSenceReward.ProtoReflect.Descriptor instead. func (*ResLimitSenceReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{471} + return file_Gameapi_proto_rawDescGZIP(), []int{473} } func (x *ResLimitSenceReward) GetCode() RES_CODE { @@ -27585,7 +27732,7 @@ type ResChessRainReward struct { func (x *ResChessRainReward) Reset() { *x = ResChessRainReward{} - mi := &file_Gameapi_proto_msgTypes[472] + mi := &file_Gameapi_proto_msgTypes[474] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27597,7 +27744,7 @@ func (x *ResChessRainReward) String() string { func (*ResChessRainReward) ProtoMessage() {} func (x *ResChessRainReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[472] + mi := &file_Gameapi_proto_msgTypes[474] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27610,7 +27757,7 @@ func (x *ResChessRainReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResChessRainReward.ProtoReflect.Descriptor instead. func (*ResChessRainReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{472} + return file_Gameapi_proto_rawDescGZIP(), []int{474} } func (x *ResChessRainReward) GetChest() int32 { @@ -27631,7 +27778,7 @@ type ReqFastProduceReward struct { func (x *ReqFastProduceReward) Reset() { *x = ReqFastProduceReward{} - mi := &file_Gameapi_proto_msgTypes[473] + mi := &file_Gameapi_proto_msgTypes[475] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27643,7 +27790,7 @@ func (x *ReqFastProduceReward) String() string { func (*ReqFastProduceReward) ProtoMessage() {} func (x *ReqFastProduceReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[473] + mi := &file_Gameapi_proto_msgTypes[475] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27656,7 +27803,7 @@ func (x *ReqFastProduceReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqFastProduceReward.ProtoReflect.Descriptor instead. func (*ReqFastProduceReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{473} + return file_Gameapi_proto_rawDescGZIP(), []int{475} } func (x *ReqFastProduceReward) GetEnergy() int32 { @@ -27677,7 +27824,7 @@ type ResFastProduceReward struct { func (x *ResFastProduceReward) Reset() { *x = ResFastProduceReward{} - mi := &file_Gameapi_proto_msgTypes[474] + mi := &file_Gameapi_proto_msgTypes[476] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27689,7 +27836,7 @@ func (x *ResFastProduceReward) String() string { func (*ResFastProduceReward) ProtoMessage() {} func (x *ResFastProduceReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[474] + mi := &file_Gameapi_proto_msgTypes[476] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27702,7 +27849,7 @@ func (x *ResFastProduceReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFastProduceReward.ProtoReflect.Descriptor instead. func (*ResFastProduceReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{474} + return file_Gameapi_proto_rawDescGZIP(), []int{476} } func (x *ResFastProduceReward) GetCode() RES_CODE { @@ -27730,7 +27877,7 @@ type ReqSearchPlayer struct { func (x *ReqSearchPlayer) Reset() { *x = ReqSearchPlayer{} - mi := &file_Gameapi_proto_msgTypes[475] + mi := &file_Gameapi_proto_msgTypes[477] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27742,7 +27889,7 @@ func (x *ReqSearchPlayer) String() string { func (*ReqSearchPlayer) ProtoMessage() {} func (x *ReqSearchPlayer) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[475] + mi := &file_Gameapi_proto_msgTypes[477] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27755,7 +27902,7 @@ func (x *ReqSearchPlayer) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqSearchPlayer.ProtoReflect.Descriptor instead. func (*ReqSearchPlayer) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{475} + return file_Gameapi_proto_rawDescGZIP(), []int{477} } func (x *ReqSearchPlayer) GetUid() string { @@ -27776,7 +27923,7 @@ type ResSearchPlayer struct { func (x *ResSearchPlayer) Reset() { *x = ResSearchPlayer{} - mi := &file_Gameapi_proto_msgTypes[476] + mi := &file_Gameapi_proto_msgTypes[478] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27788,7 +27935,7 @@ func (x *ResSearchPlayer) String() string { func (*ResSearchPlayer) ProtoMessage() {} func (x *ResSearchPlayer) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[476] + mi := &file_Gameapi_proto_msgTypes[478] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27801,7 +27948,7 @@ func (x *ResSearchPlayer) ProtoReflect() protoreflect.Message { // Deprecated: Use ResSearchPlayer.ProtoReflect.Descriptor instead. func (*ResSearchPlayer) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{476} + return file_Gameapi_proto_rawDescGZIP(), []int{478} } func (x *ResSearchPlayer) GetCode() int32 { @@ -27836,7 +27983,7 @@ type ResPlayerSimple struct { func (x *ResPlayerSimple) Reset() { *x = ResPlayerSimple{} - mi := &file_Gameapi_proto_msgTypes[477] + mi := &file_Gameapi_proto_msgTypes[479] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27848,7 +27995,7 @@ func (x *ResPlayerSimple) String() string { func (*ResPlayerSimple) ProtoMessage() {} func (x *ResPlayerSimple) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[477] + mi := &file_Gameapi_proto_msgTypes[479] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27861,7 +28008,7 @@ func (x *ResPlayerSimple) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayerSimple.ProtoReflect.Descriptor instead. func (*ResPlayerSimple) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{477} + return file_Gameapi_proto_rawDescGZIP(), []int{479} } func (x *ResPlayerSimple) GetUid() int32 { @@ -27942,7 +28089,7 @@ type ResPlayerRank struct { func (x *ResPlayerRank) Reset() { *x = ResPlayerRank{} - mi := &file_Gameapi_proto_msgTypes[478] + mi := &file_Gameapi_proto_msgTypes[480] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27954,7 +28101,7 @@ func (x *ResPlayerRank) String() string { func (*ResPlayerRank) ProtoMessage() {} func (x *ResPlayerRank) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[478] + mi := &file_Gameapi_proto_msgTypes[480] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27967,7 +28114,7 @@ func (x *ResPlayerRank) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayerRank.ProtoReflect.Descriptor instead. func (*ResPlayerRank) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{478} + return file_Gameapi_proto_rawDescGZIP(), []int{480} } func (x *ResPlayerRank) GetUid() int32 { @@ -28026,7 +28173,7 @@ type ResFriendLog struct { func (x *ResFriendLog) Reset() { *x = ResFriendLog{} - mi := &file_Gameapi_proto_msgTypes[479] + mi := &file_Gameapi_proto_msgTypes[481] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28038,7 +28185,7 @@ func (x *ResFriendLog) String() string { func (*ResFriendLog) ProtoMessage() {} func (x *ResFriendLog) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[479] + mi := &file_Gameapi_proto_msgTypes[481] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28051,7 +28198,7 @@ func (x *ResFriendLog) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFriendLog.ProtoReflect.Descriptor instead. func (*ResFriendLog) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{479} + return file_Gameapi_proto_rawDescGZIP(), []int{481} } func (x *ResFriendLog) GetPlayer() *ResPlayerSimple { @@ -28099,7 +28246,7 @@ type NotifyFriendLog struct { func (x *NotifyFriendLog) Reset() { *x = NotifyFriendLog{} - mi := &file_Gameapi_proto_msgTypes[480] + mi := &file_Gameapi_proto_msgTypes[482] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28111,7 +28258,7 @@ func (x *NotifyFriendLog) String() string { func (*NotifyFriendLog) ProtoMessage() {} func (x *NotifyFriendLog) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[480] + mi := &file_Gameapi_proto_msgTypes[482] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28124,7 +28271,7 @@ func (x *NotifyFriendLog) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyFriendLog.ProtoReflect.Descriptor instead. func (*NotifyFriendLog) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{480} + return file_Gameapi_proto_rawDescGZIP(), []int{482} } func (x *NotifyFriendLog) GetInfo() *ResFriendLog { @@ -28144,7 +28291,7 @@ type NotifyFriendCard struct { func (x *NotifyFriendCard) Reset() { *x = NotifyFriendCard{} - mi := &file_Gameapi_proto_msgTypes[481] + mi := &file_Gameapi_proto_msgTypes[483] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28156,7 +28303,7 @@ func (x *NotifyFriendCard) String() string { func (*NotifyFriendCard) ProtoMessage() {} func (x *NotifyFriendCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[481] + mi := &file_Gameapi_proto_msgTypes[483] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28169,7 +28316,7 @@ func (x *NotifyFriendCard) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyFriendCard.ProtoReflect.Descriptor instead. func (*NotifyFriendCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{481} + return file_Gameapi_proto_rawDescGZIP(), []int{483} } func (x *NotifyFriendCard) GetInfo() *ResFriendCard { @@ -28199,7 +28346,7 @@ type ResFriendCard struct { func (x *ResFriendCard) Reset() { *x = ResFriendCard{} - mi := &file_Gameapi_proto_msgTypes[482] + mi := &file_Gameapi_proto_msgTypes[484] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28211,7 +28358,7 @@ func (x *ResFriendCard) String() string { func (*ResFriendCard) ProtoMessage() {} func (x *ResFriendCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[482] + mi := &file_Gameapi_proto_msgTypes[484] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28224,7 +28371,7 @@ func (x *ResFriendCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFriendCard.ProtoReflect.Descriptor instead. func (*ResFriendCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{482} + return file_Gameapi_proto_rawDescGZIP(), []int{484} } func (x *ResFriendCard) GetUid() int32 { @@ -28315,7 +28462,7 @@ type ReqKv struct { func (x *ReqKv) Reset() { *x = ReqKv{} - mi := &file_Gameapi_proto_msgTypes[483] + mi := &file_Gameapi_proto_msgTypes[485] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28327,7 +28474,7 @@ func (x *ReqKv) String() string { func (*ReqKv) ProtoMessage() {} func (x *ReqKv) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[483] + mi := &file_Gameapi_proto_msgTypes[485] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28340,7 +28487,7 @@ func (x *ReqKv) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqKv.ProtoReflect.Descriptor instead. func (*ReqKv) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{483} + return file_Gameapi_proto_rawDescGZIP(), []int{485} } func (x *ReqKv) GetKey() int32 { @@ -28367,7 +28514,7 @@ type ResKv struct { func (x *ResKv) Reset() { *x = ResKv{} - mi := &file_Gameapi_proto_msgTypes[484] + mi := &file_Gameapi_proto_msgTypes[486] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28379,7 +28526,7 @@ func (x *ResKv) String() string { func (*ResKv) ProtoMessage() {} func (x *ResKv) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[484] + mi := &file_Gameapi_proto_msgTypes[486] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28392,7 +28539,7 @@ func (x *ResKv) ProtoReflect() protoreflect.Message { // Deprecated: Use ResKv.ProtoReflect.Descriptor instead. func (*ResKv) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{484} + return file_Gameapi_proto_rawDescGZIP(), []int{486} } func (x *ResKv) GetKv() map[int32]string { @@ -28411,7 +28558,7 @@ type ReqFriendRecommend struct { func (x *ReqFriendRecommend) Reset() { *x = ReqFriendRecommend{} - mi := &file_Gameapi_proto_msgTypes[485] + mi := &file_Gameapi_proto_msgTypes[487] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28423,7 +28570,7 @@ func (x *ReqFriendRecommend) String() string { func (*ReqFriendRecommend) ProtoMessage() {} func (x *ReqFriendRecommend) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[485] + mi := &file_Gameapi_proto_msgTypes[487] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28436,7 +28583,7 @@ func (x *ReqFriendRecommend) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqFriendRecommend.ProtoReflect.Descriptor instead. func (*ReqFriendRecommend) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{485} + return file_Gameapi_proto_rawDescGZIP(), []int{487} } type ResFriendRecommend struct { @@ -28449,7 +28596,7 @@ type ResFriendRecommend struct { func (x *ResFriendRecommend) Reset() { *x = ResFriendRecommend{} - mi := &file_Gameapi_proto_msgTypes[486] + mi := &file_Gameapi_proto_msgTypes[488] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28461,7 +28608,7 @@ func (x *ResFriendRecommend) String() string { func (*ResFriendRecommend) ProtoMessage() {} func (x *ResFriendRecommend) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[486] + mi := &file_Gameapi_proto_msgTypes[488] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28474,7 +28621,7 @@ func (x *ResFriendRecommend) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFriendRecommend.ProtoReflect.Descriptor instead. func (*ResFriendRecommend) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{486} + return file_Gameapi_proto_rawDescGZIP(), []int{488} } func (x *ResFriendRecommend) GetList() []*ResPlayerSimple { @@ -28495,7 +28642,7 @@ type ReqFriendIgnore struct { func (x *ReqFriendIgnore) Reset() { *x = ReqFriendIgnore{} - mi := &file_Gameapi_proto_msgTypes[487] + mi := &file_Gameapi_proto_msgTypes[489] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28507,7 +28654,7 @@ func (x *ReqFriendIgnore) String() string { func (*ReqFriendIgnore) ProtoMessage() {} func (x *ReqFriendIgnore) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[487] + mi := &file_Gameapi_proto_msgTypes[489] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28520,7 +28667,7 @@ func (x *ReqFriendIgnore) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqFriendIgnore.ProtoReflect.Descriptor instead. func (*ReqFriendIgnore) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{487} + return file_Gameapi_proto_rawDescGZIP(), []int{489} } func (x *ReqFriendIgnore) GetUid() int32 { @@ -28541,7 +28688,7 @@ type ResFriendIgnore struct { func (x *ResFriendIgnore) Reset() { *x = ResFriendIgnore{} - mi := &file_Gameapi_proto_msgTypes[488] + mi := &file_Gameapi_proto_msgTypes[490] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28553,7 +28700,7 @@ func (x *ResFriendIgnore) String() string { func (*ResFriendIgnore) ProtoMessage() {} func (x *ResFriendIgnore) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[488] + mi := &file_Gameapi_proto_msgTypes[490] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28566,7 +28713,7 @@ func (x *ResFriendIgnore) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFriendIgnore.ProtoReflect.Descriptor instead. func (*ResFriendIgnore) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{488} + return file_Gameapi_proto_rawDescGZIP(), []int{490} } func (x *ResFriendIgnore) GetCode() RES_CODE { @@ -28592,7 +28739,7 @@ type ReqFriendList struct { func (x *ReqFriendList) Reset() { *x = ReqFriendList{} - mi := &file_Gameapi_proto_msgTypes[489] + mi := &file_Gameapi_proto_msgTypes[491] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28604,7 +28751,7 @@ func (x *ReqFriendList) String() string { func (*ReqFriendList) ProtoMessage() {} func (x *ReqFriendList) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[489] + mi := &file_Gameapi_proto_msgTypes[491] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28617,7 +28764,7 @@ func (x *ReqFriendList) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqFriendList.ProtoReflect.Descriptor instead. func (*ReqFriendList) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{489} + return file_Gameapi_proto_rawDescGZIP(), []int{491} } type ResFriendList struct { @@ -28630,7 +28777,7 @@ type ResFriendList struct { func (x *ResFriendList) Reset() { *x = ResFriendList{} - mi := &file_Gameapi_proto_msgTypes[490] + mi := &file_Gameapi_proto_msgTypes[492] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28642,7 +28789,7 @@ func (x *ResFriendList) String() string { func (*ResFriendList) ProtoMessage() {} func (x *ResFriendList) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[490] + mi := &file_Gameapi_proto_msgTypes[492] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28655,7 +28802,7 @@ func (x *ResFriendList) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFriendList.ProtoReflect.Descriptor instead. func (*ResFriendList) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{490} + return file_Gameapi_proto_rawDescGZIP(), []int{492} } func (x *ResFriendList) GetFriendList() []*ResPlayerSimple { @@ -28674,7 +28821,7 @@ type ReqFriendApply struct { func (x *ReqFriendApply) Reset() { *x = ReqFriendApply{} - mi := &file_Gameapi_proto_msgTypes[491] + mi := &file_Gameapi_proto_msgTypes[493] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28686,7 +28833,7 @@ func (x *ReqFriendApply) String() string { func (*ReqFriendApply) ProtoMessage() {} func (x *ReqFriendApply) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[491] + mi := &file_Gameapi_proto_msgTypes[493] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28699,7 +28846,7 @@ func (x *ReqFriendApply) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqFriendApply.ProtoReflect.Descriptor instead. func (*ReqFriendApply) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{491} + return file_Gameapi_proto_rawDescGZIP(), []int{493} } type ResFriendApply struct { @@ -28712,7 +28859,7 @@ type ResFriendApply struct { func (x *ResFriendApply) Reset() { *x = ResFriendApply{} - mi := &file_Gameapi_proto_msgTypes[492] + mi := &file_Gameapi_proto_msgTypes[494] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28724,7 +28871,7 @@ func (x *ResFriendApply) String() string { func (*ResFriendApply) ProtoMessage() {} func (x *ResFriendApply) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[492] + mi := &file_Gameapi_proto_msgTypes[494] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28737,7 +28884,7 @@ func (x *ResFriendApply) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFriendApply.ProtoReflect.Descriptor instead. func (*ResFriendApply) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{492} + return file_Gameapi_proto_rawDescGZIP(), []int{494} } func (x *ResFriendApply) GetApplyList() []*ResFriendApplyInfo { @@ -28758,7 +28905,7 @@ type ResFriendApplyInfo struct { func (x *ResFriendApplyInfo) Reset() { *x = ResFriendApplyInfo{} - mi := &file_Gameapi_proto_msgTypes[493] + mi := &file_Gameapi_proto_msgTypes[495] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28770,7 +28917,7 @@ func (x *ResFriendApplyInfo) String() string { func (*ResFriendApplyInfo) ProtoMessage() {} func (x *ResFriendApplyInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[493] + mi := &file_Gameapi_proto_msgTypes[495] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28783,7 +28930,7 @@ func (x *ResFriendApplyInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFriendApplyInfo.ProtoReflect.Descriptor instead. func (*ResFriendApplyInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{493} + return file_Gameapi_proto_rawDescGZIP(), []int{495} } func (x *ResFriendApplyInfo) GetPlayer() *ResPlayerSimple { @@ -28809,7 +28956,7 @@ type ReqFriendCardMsg struct { func (x *ReqFriendCardMsg) Reset() { *x = ReqFriendCardMsg{} - mi := &file_Gameapi_proto_msgTypes[494] + mi := &file_Gameapi_proto_msgTypes[496] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28821,7 +28968,7 @@ func (x *ReqFriendCardMsg) String() string { func (*ReqFriendCardMsg) ProtoMessage() {} func (x *ReqFriendCardMsg) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[494] + mi := &file_Gameapi_proto_msgTypes[496] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28834,7 +28981,7 @@ func (x *ReqFriendCardMsg) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqFriendCardMsg.ProtoReflect.Descriptor instead. func (*ReqFriendCardMsg) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{494} + return file_Gameapi_proto_rawDescGZIP(), []int{496} } type ResFriendCardMsg struct { @@ -28847,7 +28994,7 @@ type ResFriendCardMsg struct { func (x *ResFriendCardMsg) Reset() { *x = ResFriendCardMsg{} - mi := &file_Gameapi_proto_msgTypes[495] + mi := &file_Gameapi_proto_msgTypes[497] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28859,7 +29006,7 @@ func (x *ResFriendCardMsg) String() string { func (*ResFriendCardMsg) ProtoMessage() {} func (x *ResFriendCardMsg) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[495] + mi := &file_Gameapi_proto_msgTypes[497] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28872,7 +29019,7 @@ func (x *ResFriendCardMsg) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFriendCardMsg.ProtoReflect.Descriptor instead. func (*ResFriendCardMsg) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{495} + return file_Gameapi_proto_rawDescGZIP(), []int{497} } func (x *ResFriendCardMsg) GetMsgList() []*ResFriendCard { @@ -28891,7 +29038,7 @@ type ReqFriendTimeLine struct { func (x *ReqFriendTimeLine) Reset() { *x = ReqFriendTimeLine{} - mi := &file_Gameapi_proto_msgTypes[496] + mi := &file_Gameapi_proto_msgTypes[498] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28903,7 +29050,7 @@ func (x *ReqFriendTimeLine) String() string { func (*ReqFriendTimeLine) ProtoMessage() {} func (x *ReqFriendTimeLine) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[496] + mi := &file_Gameapi_proto_msgTypes[498] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28916,7 +29063,7 @@ func (x *ReqFriendTimeLine) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqFriendTimeLine.ProtoReflect.Descriptor instead. func (*ReqFriendTimeLine) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{496} + return file_Gameapi_proto_rawDescGZIP(), []int{498} } type ResFriendTimeLine struct { @@ -28929,7 +29076,7 @@ type ResFriendTimeLine struct { func (x *ResFriendTimeLine) Reset() { *x = ResFriendTimeLine{} - mi := &file_Gameapi_proto_msgTypes[497] + mi := &file_Gameapi_proto_msgTypes[499] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28941,7 +29088,7 @@ func (x *ResFriendTimeLine) String() string { func (*ResFriendTimeLine) ProtoMessage() {} func (x *ResFriendTimeLine) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[497] + mi := &file_Gameapi_proto_msgTypes[499] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28954,7 +29101,7 @@ func (x *ResFriendTimeLine) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFriendTimeLine.ProtoReflect.Descriptor instead. func (*ResFriendTimeLine) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{497} + return file_Gameapi_proto_rawDescGZIP(), []int{499} } func (x *ResFriendTimeLine) GetLog() []*ResFriendLog { @@ -28976,7 +29123,7 @@ type ResFriendApplyNotify struct { func (x *ResFriendApplyNotify) Reset() { *x = ResFriendApplyNotify{} - mi := &file_Gameapi_proto_msgTypes[498] + mi := &file_Gameapi_proto_msgTypes[500] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28988,7 +29135,7 @@ func (x *ResFriendApplyNotify) String() string { func (*ResFriendApplyNotify) ProtoMessage() {} func (x *ResFriendApplyNotify) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[498] + mi := &file_Gameapi_proto_msgTypes[500] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29001,7 +29148,7 @@ func (x *ResFriendApplyNotify) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFriendApplyNotify.ProtoReflect.Descriptor instead. func (*ResFriendApplyNotify) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{498} + return file_Gameapi_proto_rawDescGZIP(), []int{500} } func (x *ResFriendApplyNotify) GetPlayer() *ResPlayerSimple { @@ -29036,7 +29183,7 @@ type ReqApplyFriend struct { func (x *ReqApplyFriend) Reset() { *x = ReqApplyFriend{} - mi := &file_Gameapi_proto_msgTypes[499] + mi := &file_Gameapi_proto_msgTypes[501] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29048,7 +29195,7 @@ func (x *ReqApplyFriend) String() string { func (*ReqApplyFriend) ProtoMessage() {} func (x *ReqApplyFriend) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[499] + mi := &file_Gameapi_proto_msgTypes[501] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29061,7 +29208,7 @@ func (x *ReqApplyFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqApplyFriend.ProtoReflect.Descriptor instead. func (*ReqApplyFriend) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{499} + return file_Gameapi_proto_rawDescGZIP(), []int{501} } func (x *ReqApplyFriend) GetUid() int32 { @@ -29082,7 +29229,7 @@ type ResApplyFriend struct { func (x *ResApplyFriend) Reset() { *x = ResApplyFriend{} - mi := &file_Gameapi_proto_msgTypes[500] + mi := &file_Gameapi_proto_msgTypes[502] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29094,7 +29241,7 @@ func (x *ResApplyFriend) String() string { func (*ResApplyFriend) ProtoMessage() {} func (x *ResApplyFriend) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[500] + mi := &file_Gameapi_proto_msgTypes[502] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29107,7 +29254,7 @@ func (x *ResApplyFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use ResApplyFriend.ProtoReflect.Descriptor instead. func (*ResApplyFriend) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{500} + return file_Gameapi_proto_rawDescGZIP(), []int{502} } func (x *ResApplyFriend) GetCode() RES_CODE { @@ -29135,7 +29282,7 @@ type ReqAgreeFriend struct { func (x *ReqAgreeFriend) Reset() { *x = ReqAgreeFriend{} - mi := &file_Gameapi_proto_msgTypes[501] + mi := &file_Gameapi_proto_msgTypes[503] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29147,7 +29294,7 @@ func (x *ReqAgreeFriend) String() string { func (*ReqAgreeFriend) ProtoMessage() {} func (x *ReqAgreeFriend) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[501] + mi := &file_Gameapi_proto_msgTypes[503] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29160,7 +29307,7 @@ func (x *ReqAgreeFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAgreeFriend.ProtoReflect.Descriptor instead. func (*ReqAgreeFriend) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{501} + return file_Gameapi_proto_rawDescGZIP(), []int{503} } func (x *ReqAgreeFriend) GetUid() int32 { @@ -29183,7 +29330,7 @@ type ResAgreeFriend struct { func (x *ResAgreeFriend) Reset() { *x = ResAgreeFriend{} - mi := &file_Gameapi_proto_msgTypes[502] + mi := &file_Gameapi_proto_msgTypes[504] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29195,7 +29342,7 @@ func (x *ResAgreeFriend) String() string { func (*ResAgreeFriend) ProtoMessage() {} func (x *ResAgreeFriend) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[502] + mi := &file_Gameapi_proto_msgTypes[504] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29208,7 +29355,7 @@ func (x *ResAgreeFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use ResAgreeFriend.ProtoReflect.Descriptor instead. func (*ResAgreeFriend) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{502} + return file_Gameapi_proto_rawDescGZIP(), []int{504} } func (x *ResAgreeFriend) GetCode() RES_CODE { @@ -29250,7 +29397,7 @@ type ReqRefuseFriend struct { func (x *ReqRefuseFriend) Reset() { *x = ReqRefuseFriend{} - mi := &file_Gameapi_proto_msgTypes[503] + mi := &file_Gameapi_proto_msgTypes[505] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29262,7 +29409,7 @@ func (x *ReqRefuseFriend) String() string { func (*ReqRefuseFriend) ProtoMessage() {} func (x *ReqRefuseFriend) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[503] + mi := &file_Gameapi_proto_msgTypes[505] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29275,7 +29422,7 @@ func (x *ReqRefuseFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqRefuseFriend.ProtoReflect.Descriptor instead. func (*ReqRefuseFriend) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{503} + return file_Gameapi_proto_rawDescGZIP(), []int{505} } func (x *ReqRefuseFriend) GetUid() int32 { @@ -29297,7 +29444,7 @@ type ResRefuseFriend struct { func (x *ResRefuseFriend) Reset() { *x = ResRefuseFriend{} - mi := &file_Gameapi_proto_msgTypes[504] + mi := &file_Gameapi_proto_msgTypes[506] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29309,7 +29456,7 @@ func (x *ResRefuseFriend) String() string { func (*ResRefuseFriend) ProtoMessage() {} func (x *ResRefuseFriend) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[504] + mi := &file_Gameapi_proto_msgTypes[506] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29322,7 +29469,7 @@ func (x *ResRefuseFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use ResRefuseFriend.ProtoReflect.Descriptor instead. func (*ResRefuseFriend) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{504} + return file_Gameapi_proto_rawDescGZIP(), []int{506} } func (x *ResRefuseFriend) GetCode() RES_CODE { @@ -29357,7 +29504,7 @@ type ReqDelFriend struct { func (x *ReqDelFriend) Reset() { *x = ReqDelFriend{} - mi := &file_Gameapi_proto_msgTypes[505] + mi := &file_Gameapi_proto_msgTypes[507] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29369,7 +29516,7 @@ func (x *ReqDelFriend) String() string { func (*ReqDelFriend) ProtoMessage() {} func (x *ReqDelFriend) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[505] + mi := &file_Gameapi_proto_msgTypes[507] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29382,7 +29529,7 @@ func (x *ReqDelFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqDelFriend.ProtoReflect.Descriptor instead. func (*ReqDelFriend) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{505} + return file_Gameapi_proto_rawDescGZIP(), []int{507} } func (x *ReqDelFriend) GetUid() int32 { @@ -29404,7 +29551,7 @@ type ResDelFriend struct { func (x *ResDelFriend) Reset() { *x = ResDelFriend{} - mi := &file_Gameapi_proto_msgTypes[506] + mi := &file_Gameapi_proto_msgTypes[508] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29416,7 +29563,7 @@ func (x *ResDelFriend) String() string { func (*ResDelFriend) ProtoMessage() {} func (x *ResDelFriend) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[506] + mi := &file_Gameapi_proto_msgTypes[508] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29429,7 +29576,7 @@ func (x *ResDelFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use ResDelFriend.ProtoReflect.Descriptor instead. func (*ResDelFriend) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{506} + return file_Gameapi_proto_rawDescGZIP(), []int{508} } func (x *ResDelFriend) GetCode() RES_CODE { @@ -29464,7 +29611,7 @@ type ReqRank struct { func (x *ReqRank) Reset() { *x = ReqRank{} - mi := &file_Gameapi_proto_msgTypes[507] + mi := &file_Gameapi_proto_msgTypes[509] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29476,7 +29623,7 @@ func (x *ReqRank) String() string { func (*ReqRank) ProtoMessage() {} func (x *ReqRank) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[507] + mi := &file_Gameapi_proto_msgTypes[509] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29489,7 +29636,7 @@ func (x *ReqRank) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqRank.ProtoReflect.Descriptor instead. func (*ReqRank) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{507} + return file_Gameapi_proto_rawDescGZIP(), []int{509} } func (x *ReqRank) GetType() int32 { @@ -29512,7 +29659,7 @@ type ResRank struct { func (x *ResRank) Reset() { *x = ResRank{} - mi := &file_Gameapi_proto_msgTypes[508] + mi := &file_Gameapi_proto_msgTypes[510] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29524,7 +29671,7 @@ func (x *ResRank) String() string { func (*ResRank) ProtoMessage() {} func (x *ResRank) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[508] + mi := &file_Gameapi_proto_msgTypes[510] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29537,7 +29684,7 @@ func (x *ResRank) ProtoReflect() protoreflect.Message { // Deprecated: Use ResRank.ProtoReflect.Descriptor instead. func (*ResRank) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{508} + return file_Gameapi_proto_rawDescGZIP(), []int{510} } func (x *ResRank) GetType() int32 { @@ -29577,7 +29724,7 @@ type ReqMailList struct { func (x *ReqMailList) Reset() { *x = ReqMailList{} - mi := &file_Gameapi_proto_msgTypes[509] + mi := &file_Gameapi_proto_msgTypes[511] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29589,7 +29736,7 @@ func (x *ReqMailList) String() string { func (*ReqMailList) ProtoMessage() {} func (x *ReqMailList) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[509] + mi := &file_Gameapi_proto_msgTypes[511] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29602,7 +29749,7 @@ func (x *ReqMailList) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqMailList.ProtoReflect.Descriptor instead. func (*ReqMailList) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{509} + return file_Gameapi_proto_rawDescGZIP(), []int{511} } type ResMailList struct { @@ -29615,7 +29762,7 @@ type ResMailList struct { func (x *ResMailList) Reset() { *x = ResMailList{} - mi := &file_Gameapi_proto_msgTypes[510] + mi := &file_Gameapi_proto_msgTypes[512] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29627,7 +29774,7 @@ func (x *ResMailList) String() string { func (*ResMailList) ProtoMessage() {} func (x *ResMailList) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[510] + mi := &file_Gameapi_proto_msgTypes[512] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29640,7 +29787,7 @@ func (x *ResMailList) ProtoReflect() protoreflect.Message { // Deprecated: Use ResMailList.ProtoReflect.Descriptor instead. func (*ResMailList) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{510} + return file_Gameapi_proto_rawDescGZIP(), []int{512} } func (x *ResMailList) GetMailList() map[int32]*MailInfo { @@ -29665,7 +29812,7 @@ type MailInfo struct { func (x *MailInfo) Reset() { *x = MailInfo{} - mi := &file_Gameapi_proto_msgTypes[511] + mi := &file_Gameapi_proto_msgTypes[513] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29677,7 +29824,7 @@ func (x *MailInfo) String() string { func (*MailInfo) ProtoMessage() {} func (x *MailInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[511] + mi := &file_Gameapi_proto_msgTypes[513] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29690,7 +29837,7 @@ func (x *MailInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use MailInfo.ProtoReflect.Descriptor instead. func (*MailInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{511} + return file_Gameapi_proto_rawDescGZIP(), []int{513} } func (x *MailInfo) GetId() int32 { @@ -29745,7 +29892,7 @@ type MailNotify struct { func (x *MailNotify) Reset() { *x = MailNotify{} - mi := &file_Gameapi_proto_msgTypes[512] + mi := &file_Gameapi_proto_msgTypes[514] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29757,7 +29904,7 @@ func (x *MailNotify) String() string { func (*MailNotify) ProtoMessage() {} func (x *MailNotify) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[512] + mi := &file_Gameapi_proto_msgTypes[514] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29770,7 +29917,7 @@ func (x *MailNotify) ProtoReflect() protoreflect.Message { // Deprecated: Use MailNotify.ProtoReflect.Descriptor instead. func (*MailNotify) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{512} + return file_Gameapi_proto_rawDescGZIP(), []int{514} } func (x *MailNotify) GetInfo() *MailInfo { @@ -29791,7 +29938,7 @@ type ReqReadMail struct { func (x *ReqReadMail) Reset() { *x = ReqReadMail{} - mi := &file_Gameapi_proto_msgTypes[513] + mi := &file_Gameapi_proto_msgTypes[515] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29803,7 +29950,7 @@ func (x *ReqReadMail) String() string { func (*ReqReadMail) ProtoMessage() {} func (x *ReqReadMail) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[513] + mi := &file_Gameapi_proto_msgTypes[515] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29816,7 +29963,7 @@ func (x *ReqReadMail) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqReadMail.ProtoReflect.Descriptor instead. func (*ReqReadMail) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{513} + return file_Gameapi_proto_rawDescGZIP(), []int{515} } func (x *ReqReadMail) GetId() int32 { @@ -29838,7 +29985,7 @@ type ResReadMail struct { func (x *ResReadMail) Reset() { *x = ResReadMail{} - mi := &file_Gameapi_proto_msgTypes[514] + mi := &file_Gameapi_proto_msgTypes[516] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29850,7 +29997,7 @@ func (x *ResReadMail) String() string { func (*ResReadMail) ProtoMessage() {} func (x *ResReadMail) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[514] + mi := &file_Gameapi_proto_msgTypes[516] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29863,7 +30010,7 @@ func (x *ResReadMail) ProtoReflect() protoreflect.Message { // Deprecated: Use ResReadMail.ProtoReflect.Descriptor instead. func (*ResReadMail) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{514} + return file_Gameapi_proto_rawDescGZIP(), []int{516} } func (x *ResReadMail) GetCode() RES_CODE { @@ -29898,7 +30045,7 @@ type ReqGetMailReward struct { func (x *ReqGetMailReward) Reset() { *x = ReqGetMailReward{} - mi := &file_Gameapi_proto_msgTypes[515] + mi := &file_Gameapi_proto_msgTypes[517] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29910,7 +30057,7 @@ func (x *ReqGetMailReward) String() string { func (*ReqGetMailReward) ProtoMessage() {} func (x *ReqGetMailReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[515] + mi := &file_Gameapi_proto_msgTypes[517] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29923,7 +30070,7 @@ func (x *ReqGetMailReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGetMailReward.ProtoReflect.Descriptor instead. func (*ReqGetMailReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{515} + return file_Gameapi_proto_rawDescGZIP(), []int{517} } func (x *ReqGetMailReward) GetId() int32 { @@ -29945,7 +30092,7 @@ type ResGetMailReward struct { func (x *ResGetMailReward) Reset() { *x = ResGetMailReward{} - mi := &file_Gameapi_proto_msgTypes[516] + mi := &file_Gameapi_proto_msgTypes[518] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29957,7 +30104,7 @@ func (x *ResGetMailReward) String() string { func (*ResGetMailReward) ProtoMessage() {} func (x *ResGetMailReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[516] + mi := &file_Gameapi_proto_msgTypes[518] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29970,7 +30117,7 @@ func (x *ResGetMailReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGetMailReward.ProtoReflect.Descriptor instead. func (*ResGetMailReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{516} + return file_Gameapi_proto_rawDescGZIP(), []int{518} } func (x *ResGetMailReward) GetCode() RES_CODE { @@ -30005,7 +30152,7 @@ type ReqDeleteMail struct { func (x *ReqDeleteMail) Reset() { *x = ReqDeleteMail{} - mi := &file_Gameapi_proto_msgTypes[517] + mi := &file_Gameapi_proto_msgTypes[519] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30017,7 +30164,7 @@ func (x *ReqDeleteMail) String() string { func (*ReqDeleteMail) ProtoMessage() {} func (x *ReqDeleteMail) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[517] + mi := &file_Gameapi_proto_msgTypes[519] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30030,7 +30177,7 @@ func (x *ReqDeleteMail) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqDeleteMail.ProtoReflect.Descriptor instead. func (*ReqDeleteMail) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{517} + return file_Gameapi_proto_rawDescGZIP(), []int{519} } func (x *ReqDeleteMail) GetId() int32 { @@ -30052,7 +30199,7 @@ type ResDeleteMail struct { func (x *ResDeleteMail) Reset() { *x = ResDeleteMail{} - mi := &file_Gameapi_proto_msgTypes[518] + mi := &file_Gameapi_proto_msgTypes[520] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30064,7 +30211,7 @@ func (x *ResDeleteMail) String() string { func (*ResDeleteMail) ProtoMessage() {} func (x *ResDeleteMail) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[518] + mi := &file_Gameapi_proto_msgTypes[520] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30077,7 +30224,7 @@ func (x *ResDeleteMail) ProtoReflect() protoreflect.Message { // Deprecated: Use ResDeleteMail.ProtoReflect.Descriptor instead. func (*ResDeleteMail) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{518} + return file_Gameapi_proto_rawDescGZIP(), []int{520} } func (x *ResDeleteMail) GetCode() RES_CODE { @@ -30118,7 +30265,7 @@ type ResCharge struct { func (x *ResCharge) Reset() { *x = ResCharge{} - mi := &file_Gameapi_proto_msgTypes[519] + mi := &file_Gameapi_proto_msgTypes[521] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30130,7 +30277,7 @@ func (x *ResCharge) String() string { func (*ResCharge) ProtoMessage() {} func (x *ResCharge) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[519] + mi := &file_Gameapi_proto_msgTypes[521] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30143,7 +30290,7 @@ func (x *ResCharge) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCharge.ProtoReflect.Descriptor instead. func (*ResCharge) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{519} + return file_Gameapi_proto_rawDescGZIP(), []int{521} } func (x *ResCharge) GetCharge() float32 { @@ -30213,7 +30360,7 @@ type ResSpecialShop struct { func (x *ResSpecialShop) Reset() { *x = ResSpecialShop{} - mi := &file_Gameapi_proto_msgTypes[520] + mi := &file_Gameapi_proto_msgTypes[522] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30225,7 +30372,7 @@ func (x *ResSpecialShop) String() string { func (*ResSpecialShop) ProtoMessage() {} func (x *ResSpecialShop) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[520] + mi := &file_Gameapi_proto_msgTypes[522] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30238,7 +30385,7 @@ func (x *ResSpecialShop) ProtoReflect() protoreflect.Message { // Deprecated: Use ResSpecialShop.ProtoReflect.Descriptor instead. func (*ResSpecialShop) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{520} + return file_Gameapi_proto_rawDescGZIP(), []int{522} } func (x *ResSpecialShop) GetGrade() int32 { @@ -30267,7 +30414,7 @@ type ResChessShop struct { func (x *ResChessShop) Reset() { *x = ResChessShop{} - mi := &file_Gameapi_proto_msgTypes[521] + mi := &file_Gameapi_proto_msgTypes[523] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30279,7 +30426,7 @@ func (x *ResChessShop) String() string { func (*ResChessShop) ProtoMessage() {} func (x *ResChessShop) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[521] + mi := &file_Gameapi_proto_msgTypes[523] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30292,7 +30439,7 @@ func (x *ResChessShop) ProtoReflect() protoreflect.Message { // Deprecated: Use ResChessShop.ProtoReflect.Descriptor instead. func (*ResChessShop) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{521} + return file_Gameapi_proto_rawDescGZIP(), []int{523} } func (x *ResChessShop) GetDiamond() int32 { @@ -30324,7 +30471,7 @@ type ReqFreeShop struct { func (x *ReqFreeShop) Reset() { *x = ReqFreeShop{} - mi := &file_Gameapi_proto_msgTypes[522] + mi := &file_Gameapi_proto_msgTypes[524] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30336,7 +30483,7 @@ func (x *ReqFreeShop) String() string { func (*ReqFreeShop) ProtoMessage() {} func (x *ReqFreeShop) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[522] + mi := &file_Gameapi_proto_msgTypes[524] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30349,7 +30496,7 @@ func (x *ReqFreeShop) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqFreeShop.ProtoReflect.Descriptor instead. func (*ReqFreeShop) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{522} + return file_Gameapi_proto_rawDescGZIP(), []int{524} } type ResFreeShop struct { @@ -30363,7 +30510,7 @@ type ResFreeShop struct { func (x *ResFreeShop) Reset() { *x = ResFreeShop{} - mi := &file_Gameapi_proto_msgTypes[523] + mi := &file_Gameapi_proto_msgTypes[525] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30375,7 +30522,7 @@ func (x *ResFreeShop) String() string { func (*ResFreeShop) ProtoMessage() {} func (x *ResFreeShop) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[523] + mi := &file_Gameapi_proto_msgTypes[525] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30388,7 +30535,7 @@ func (x *ResFreeShop) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFreeShop.ProtoReflect.Descriptor instead. func (*ResFreeShop) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{523} + return file_Gameapi_proto_rawDescGZIP(), []int{525} } func (x *ResFreeShop) GetCode() RES_CODE { @@ -30416,7 +30563,7 @@ type ReqBuyChessShop struct { func (x *ReqBuyChessShop) Reset() { *x = ReqBuyChessShop{} - mi := &file_Gameapi_proto_msgTypes[524] + mi := &file_Gameapi_proto_msgTypes[526] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30428,7 +30575,7 @@ func (x *ReqBuyChessShop) String() string { func (*ReqBuyChessShop) ProtoMessage() {} func (x *ReqBuyChessShop) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[524] + mi := &file_Gameapi_proto_msgTypes[526] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30441,7 +30588,7 @@ func (x *ReqBuyChessShop) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqBuyChessShop.ProtoReflect.Descriptor instead. func (*ReqBuyChessShop) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{524} + return file_Gameapi_proto_rawDescGZIP(), []int{526} } func (x *ReqBuyChessShop) GetId() int32 { @@ -30462,7 +30609,7 @@ type ResBuyChessShop struct { func (x *ResBuyChessShop) Reset() { *x = ResBuyChessShop{} - mi := &file_Gameapi_proto_msgTypes[525] + mi := &file_Gameapi_proto_msgTypes[527] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30474,7 +30621,7 @@ func (x *ResBuyChessShop) String() string { func (*ResBuyChessShop) ProtoMessage() {} func (x *ResBuyChessShop) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[525] + mi := &file_Gameapi_proto_msgTypes[527] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30487,7 +30634,7 @@ func (x *ResBuyChessShop) ProtoReflect() protoreflect.Message { // Deprecated: Use ResBuyChessShop.ProtoReflect.Descriptor instead. func (*ResBuyChessShop) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{525} + return file_Gameapi_proto_rawDescGZIP(), []int{527} } func (x *ResBuyChessShop) GetCode() RES_CODE { @@ -30516,7 +30663,7 @@ type ReqBuyChessShop2 struct { func (x *ReqBuyChessShop2) Reset() { *x = ReqBuyChessShop2{} - mi := &file_Gameapi_proto_msgTypes[526] + mi := &file_Gameapi_proto_msgTypes[528] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30528,7 +30675,7 @@ func (x *ReqBuyChessShop2) String() string { func (*ReqBuyChessShop2) ProtoMessage() {} func (x *ReqBuyChessShop2) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[526] + mi := &file_Gameapi_proto_msgTypes[528] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30541,7 +30688,7 @@ func (x *ReqBuyChessShop2) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqBuyChessShop2.ProtoReflect.Descriptor instead. func (*ReqBuyChessShop2) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{526} + return file_Gameapi_proto_rawDescGZIP(), []int{528} } func (x *ReqBuyChessShop2) GetId() int32 { @@ -30569,7 +30716,7 @@ type ResBuyChessShop2 struct { func (x *ResBuyChessShop2) Reset() { *x = ResBuyChessShop2{} - mi := &file_Gameapi_proto_msgTypes[527] + mi := &file_Gameapi_proto_msgTypes[529] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30581,7 +30728,7 @@ func (x *ResBuyChessShop2) String() string { func (*ResBuyChessShop2) ProtoMessage() {} func (x *ResBuyChessShop2) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[527] + mi := &file_Gameapi_proto_msgTypes[529] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30594,7 +30741,7 @@ func (x *ResBuyChessShop2) ProtoReflect() protoreflect.Message { // Deprecated: Use ResBuyChessShop2.ProtoReflect.Descriptor instead. func (*ResBuyChessShop2) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{527} + return file_Gameapi_proto_rawDescGZIP(), []int{529} } func (x *ResBuyChessShop2) GetCode() RES_CODE { @@ -30620,7 +30767,7 @@ type ReqRefreshChessShop struct { func (x *ReqRefreshChessShop) Reset() { *x = ReqRefreshChessShop{} - mi := &file_Gameapi_proto_msgTypes[528] + mi := &file_Gameapi_proto_msgTypes[530] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30632,7 +30779,7 @@ func (x *ReqRefreshChessShop) String() string { func (*ReqRefreshChessShop) ProtoMessage() {} func (x *ReqRefreshChessShop) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[528] + mi := &file_Gameapi_proto_msgTypes[530] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30645,7 +30792,7 @@ func (x *ReqRefreshChessShop) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqRefreshChessShop.ProtoReflect.Descriptor instead. func (*ReqRefreshChessShop) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{528} + return file_Gameapi_proto_rawDescGZIP(), []int{530} } type ResRefreshChessShop struct { @@ -30659,7 +30806,7 @@ type ResRefreshChessShop struct { func (x *ResRefreshChessShop) Reset() { *x = ResRefreshChessShop{} - mi := &file_Gameapi_proto_msgTypes[529] + mi := &file_Gameapi_proto_msgTypes[531] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30671,7 +30818,7 @@ func (x *ResRefreshChessShop) String() string { func (*ResRefreshChessShop) ProtoMessage() {} func (x *ResRefreshChessShop) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[529] + mi := &file_Gameapi_proto_msgTypes[531] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30684,7 +30831,7 @@ func (x *ResRefreshChessShop) ProtoReflect() protoreflect.Message { // Deprecated: Use ResRefreshChessShop.ProtoReflect.Descriptor instead. func (*ResRefreshChessShop) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{529} + return file_Gameapi_proto_rawDescGZIP(), []int{531} } func (x *ResRefreshChessShop) GetCode() RES_CODE { @@ -30709,7 +30856,7 @@ type ReqEndless struct { func (x *ReqEndless) Reset() { *x = ReqEndless{} - mi := &file_Gameapi_proto_msgTypes[530] + mi := &file_Gameapi_proto_msgTypes[532] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30721,7 +30868,7 @@ func (x *ReqEndless) String() string { func (*ReqEndless) ProtoMessage() {} func (x *ReqEndless) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[530] + mi := &file_Gameapi_proto_msgTypes[532] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30734,7 +30881,7 @@ func (x *ReqEndless) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqEndless.ProtoReflect.Descriptor instead. func (*ReqEndless) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{530} + return file_Gameapi_proto_rawDescGZIP(), []int{532} } type ResEndless struct { @@ -30748,7 +30895,7 @@ type ResEndless struct { func (x *ResEndless) Reset() { *x = ResEndless{} - mi := &file_Gameapi_proto_msgTypes[531] + mi := &file_Gameapi_proto_msgTypes[533] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30760,7 +30907,7 @@ func (x *ResEndless) String() string { func (*ResEndless) ProtoMessage() {} func (x *ResEndless) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[531] + mi := &file_Gameapi_proto_msgTypes[533] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30773,7 +30920,7 @@ func (x *ResEndless) ProtoReflect() protoreflect.Message { // Deprecated: Use ResEndless.ProtoReflect.Descriptor instead. func (*ResEndless) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{531} + return file_Gameapi_proto_rawDescGZIP(), []int{533} } func (x *ResEndless) GetId() int32 { @@ -30802,7 +30949,7 @@ type ResEndlessInfo struct { func (x *ResEndlessInfo) Reset() { *x = ResEndlessInfo{} - mi := &file_Gameapi_proto_msgTypes[532] + mi := &file_Gameapi_proto_msgTypes[534] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30814,7 +30961,7 @@ func (x *ResEndlessInfo) String() string { func (*ResEndlessInfo) ProtoMessage() {} func (x *ResEndlessInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[532] + mi := &file_Gameapi_proto_msgTypes[534] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30827,7 +30974,7 @@ func (x *ResEndlessInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ResEndlessInfo.ProtoReflect.Descriptor instead. func (*ResEndlessInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{532} + return file_Gameapi_proto_rawDescGZIP(), []int{534} } func (x *ResEndlessInfo) GetChargeId() int32 { @@ -30859,7 +31006,7 @@ type ReqEndlessReward struct { func (x *ReqEndlessReward) Reset() { *x = ReqEndlessReward{} - mi := &file_Gameapi_proto_msgTypes[533] + mi := &file_Gameapi_proto_msgTypes[535] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30871,7 +31018,7 @@ func (x *ReqEndlessReward) String() string { func (*ReqEndlessReward) ProtoMessage() {} func (x *ReqEndlessReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[533] + mi := &file_Gameapi_proto_msgTypes[535] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30884,7 +31031,7 @@ func (x *ReqEndlessReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqEndlessReward.ProtoReflect.Descriptor instead. func (*ReqEndlessReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{533} + return file_Gameapi_proto_rawDescGZIP(), []int{535} } type ResEndlessReward struct { @@ -30898,7 +31045,7 @@ type ResEndlessReward struct { func (x *ResEndlessReward) Reset() { *x = ResEndlessReward{} - mi := &file_Gameapi_proto_msgTypes[534] + mi := &file_Gameapi_proto_msgTypes[536] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30910,7 +31057,7 @@ func (x *ResEndlessReward) String() string { func (*ResEndlessReward) ProtoMessage() {} func (x *ResEndlessReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[534] + mi := &file_Gameapi_proto_msgTypes[536] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30923,7 +31070,7 @@ func (x *ResEndlessReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResEndlessReward.ProtoReflect.Descriptor instead. func (*ResEndlessReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{534} + return file_Gameapi_proto_rawDescGZIP(), []int{536} } func (x *ResEndlessReward) GetCode() RES_CODE { @@ -30953,7 +31100,7 @@ type ResPiggyBank struct { func (x *ResPiggyBank) Reset() { *x = ResPiggyBank{} - mi := &file_Gameapi_proto_msgTypes[535] + mi := &file_Gameapi_proto_msgTypes[537] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30965,7 +31112,7 @@ func (x *ResPiggyBank) String() string { func (*ResPiggyBank) ProtoMessage() {} func (x *ResPiggyBank) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[535] + mi := &file_Gameapi_proto_msgTypes[537] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30978,7 +31125,7 @@ func (x *ResPiggyBank) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPiggyBank.ProtoReflect.Descriptor instead. func (*ResPiggyBank) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{535} + return file_Gameapi_proto_rawDescGZIP(), []int{537} } func (x *ResPiggyBank) GetType() int32 { @@ -31017,7 +31164,7 @@ type ReqPiggyBankReward struct { func (x *ReqPiggyBankReward) Reset() { *x = ReqPiggyBankReward{} - mi := &file_Gameapi_proto_msgTypes[536] + mi := &file_Gameapi_proto_msgTypes[538] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31029,7 +31176,7 @@ func (x *ReqPiggyBankReward) String() string { func (*ReqPiggyBankReward) ProtoMessage() {} func (x *ReqPiggyBankReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[536] + mi := &file_Gameapi_proto_msgTypes[538] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31042,7 +31189,7 @@ func (x *ReqPiggyBankReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPiggyBankReward.ProtoReflect.Descriptor instead. func (*ReqPiggyBankReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{536} + return file_Gameapi_proto_rawDescGZIP(), []int{538} } type ResPiggyBankReward struct { @@ -31056,7 +31203,7 @@ type ResPiggyBankReward struct { func (x *ResPiggyBankReward) Reset() { *x = ResPiggyBankReward{} - mi := &file_Gameapi_proto_msgTypes[537] + mi := &file_Gameapi_proto_msgTypes[539] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31068,7 +31215,7 @@ func (x *ResPiggyBankReward) String() string { func (*ResPiggyBankReward) ProtoMessage() {} func (x *ResPiggyBankReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[537] + mi := &file_Gameapi_proto_msgTypes[539] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31081,7 +31228,7 @@ func (x *ResPiggyBankReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPiggyBankReward.ProtoReflect.Descriptor instead. func (*ResPiggyBankReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{537} + return file_Gameapi_proto_rawDescGZIP(), []int{539} } func (x *ResPiggyBankReward) GetCode() RES_CODE { @@ -31110,7 +31257,7 @@ type ReqCreateOrderSn struct { func (x *ReqCreateOrderSn) Reset() { *x = ReqCreateOrderSn{} - mi := &file_Gameapi_proto_msgTypes[538] + mi := &file_Gameapi_proto_msgTypes[540] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31122,7 +31269,7 @@ func (x *ReqCreateOrderSn) String() string { func (*ReqCreateOrderSn) ProtoMessage() {} func (x *ReqCreateOrderSn) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[538] + mi := &file_Gameapi_proto_msgTypes[540] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31135,7 +31282,7 @@ func (x *ReqCreateOrderSn) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCreateOrderSn.ProtoReflect.Descriptor instead. func (*ReqCreateOrderSn) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{538} + return file_Gameapi_proto_rawDescGZIP(), []int{540} } func (x *ReqCreateOrderSn) GetChargeId() int32 { @@ -31169,7 +31316,7 @@ type ResCreateOrderSn struct { func (x *ResCreateOrderSn) Reset() { *x = ResCreateOrderSn{} - mi := &file_Gameapi_proto_msgTypes[539] + mi := &file_Gameapi_proto_msgTypes[541] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31181,7 +31328,7 @@ func (x *ResCreateOrderSn) String() string { func (*ResCreateOrderSn) ProtoMessage() {} func (x *ResCreateOrderSn) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[539] + mi := &file_Gameapi_proto_msgTypes[541] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31194,7 +31341,7 @@ func (x *ResCreateOrderSn) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCreateOrderSn.ProtoReflect.Descriptor instead. func (*ResCreateOrderSn) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{539} + return file_Gameapi_proto_rawDescGZIP(), []int{541} } func (x *ResCreateOrderSn) GetOrderSn() string { @@ -31216,7 +31363,7 @@ type ReqShippingOrder struct { func (x *ReqShippingOrder) Reset() { *x = ReqShippingOrder{} - mi := &file_Gameapi_proto_msgTypes[540] + mi := &file_Gameapi_proto_msgTypes[542] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31228,7 +31375,7 @@ func (x *ReqShippingOrder) String() string { func (*ReqShippingOrder) ProtoMessage() {} func (x *ReqShippingOrder) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[540] + mi := &file_Gameapi_proto_msgTypes[542] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31241,7 +31388,7 @@ func (x *ReqShippingOrder) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqShippingOrder.ProtoReflect.Descriptor instead. func (*ReqShippingOrder) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{540} + return file_Gameapi_proto_rawDescGZIP(), []int{542} } func (x *ReqShippingOrder) GetOrderSn() string { @@ -31276,7 +31423,7 @@ type ResShippingOrder struct { func (x *ResShippingOrder) Reset() { *x = ResShippingOrder{} - mi := &file_Gameapi_proto_msgTypes[541] + mi := &file_Gameapi_proto_msgTypes[543] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31288,7 +31435,7 @@ func (x *ResShippingOrder) String() string { func (*ResShippingOrder) ProtoMessage() {} func (x *ResShippingOrder) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[541] + mi := &file_Gameapi_proto_msgTypes[543] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31301,7 +31448,7 @@ func (x *ResShippingOrder) ProtoReflect() protoreflect.Message { // Deprecated: Use ResShippingOrder.ProtoReflect.Descriptor instead. func (*ResShippingOrder) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{541} + return file_Gameapi_proto_rawDescGZIP(), []int{543} } func (x *ResShippingOrder) GetCode() RES_CODE { @@ -31326,7 +31473,7 @@ type ReqChampship struct { func (x *ReqChampship) Reset() { *x = ReqChampship{} - mi := &file_Gameapi_proto_msgTypes[542] + mi := &file_Gameapi_proto_msgTypes[544] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31338,7 +31485,7 @@ func (x *ReqChampship) String() string { func (*ReqChampship) ProtoMessage() {} func (x *ReqChampship) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[542] + mi := &file_Gameapi_proto_msgTypes[544] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31351,7 +31498,7 @@ func (x *ReqChampship) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqChampship.ProtoReflect.Descriptor instead. func (*ReqChampship) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{542} + return file_Gameapi_proto_rawDescGZIP(), []int{544} } type ResChampship struct { @@ -31370,7 +31517,7 @@ type ResChampship struct { func (x *ResChampship) Reset() { *x = ResChampship{} - mi := &file_Gameapi_proto_msgTypes[543] + mi := &file_Gameapi_proto_msgTypes[545] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31382,7 +31529,7 @@ func (x *ResChampship) String() string { func (*ResChampship) ProtoMessage() {} func (x *ResChampship) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[543] + mi := &file_Gameapi_proto_msgTypes[545] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31395,7 +31542,7 @@ func (x *ResChampship) ProtoReflect() protoreflect.Message { // Deprecated: Use ResChampship.ProtoReflect.Descriptor instead. func (*ResChampship) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{543} + return file_Gameapi_proto_rawDescGZIP(), []int{545} } func (x *ResChampship) GetScore() int32 { @@ -31455,7 +31602,7 @@ type ReqChampshipReward struct { func (x *ReqChampshipReward) Reset() { *x = ReqChampshipReward{} - mi := &file_Gameapi_proto_msgTypes[544] + mi := &file_Gameapi_proto_msgTypes[546] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31467,7 +31614,7 @@ func (x *ReqChampshipReward) String() string { func (*ReqChampshipReward) ProtoMessage() {} func (x *ReqChampshipReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[544] + mi := &file_Gameapi_proto_msgTypes[546] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31480,7 +31627,7 @@ func (x *ReqChampshipReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqChampshipReward.ProtoReflect.Descriptor instead. func (*ReqChampshipReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{544} + return file_Gameapi_proto_rawDescGZIP(), []int{546} } type ResChampshipReward struct { @@ -31494,7 +31641,7 @@ type ResChampshipReward struct { func (x *ResChampshipReward) Reset() { *x = ResChampshipReward{} - mi := &file_Gameapi_proto_msgTypes[545] + mi := &file_Gameapi_proto_msgTypes[547] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31506,7 +31653,7 @@ func (x *ResChampshipReward) String() string { func (*ResChampshipReward) ProtoMessage() {} func (x *ResChampshipReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[545] + mi := &file_Gameapi_proto_msgTypes[547] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31519,7 +31666,7 @@ func (x *ResChampshipReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResChampshipReward.ProtoReflect.Descriptor instead. func (*ResChampshipReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{545} + return file_Gameapi_proto_rawDescGZIP(), []int{547} } func (x *ResChampshipReward) GetCode() RES_CODE { @@ -31544,7 +31691,7 @@ type ReqChampshipRankReward struct { func (x *ReqChampshipRankReward) Reset() { *x = ReqChampshipRankReward{} - mi := &file_Gameapi_proto_msgTypes[546] + mi := &file_Gameapi_proto_msgTypes[548] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31556,7 +31703,7 @@ func (x *ReqChampshipRankReward) String() string { func (*ReqChampshipRankReward) ProtoMessage() {} func (x *ReqChampshipRankReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[546] + mi := &file_Gameapi_proto_msgTypes[548] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31569,7 +31716,7 @@ func (x *ReqChampshipRankReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqChampshipRankReward.ProtoReflect.Descriptor instead. func (*ReqChampshipRankReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{546} + return file_Gameapi_proto_rawDescGZIP(), []int{548} } type ResChampshipRankReward struct { @@ -31583,7 +31730,7 @@ type ResChampshipRankReward struct { func (x *ResChampshipRankReward) Reset() { *x = ResChampshipRankReward{} - mi := &file_Gameapi_proto_msgTypes[547] + mi := &file_Gameapi_proto_msgTypes[549] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31595,7 +31742,7 @@ func (x *ResChampshipRankReward) String() string { func (*ResChampshipRankReward) ProtoMessage() {} func (x *ResChampshipRankReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[547] + mi := &file_Gameapi_proto_msgTypes[549] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31608,7 +31755,7 @@ func (x *ResChampshipRankReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResChampshipRankReward.ProtoReflect.Descriptor instead. func (*ResChampshipRankReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{547} + return file_Gameapi_proto_rawDescGZIP(), []int{549} } func (x *ResChampshipRankReward) GetCode() RES_CODE { @@ -31633,7 +31780,7 @@ type ReqChampshipRank struct { func (x *ReqChampshipRank) Reset() { *x = ReqChampshipRank{} - mi := &file_Gameapi_proto_msgTypes[548] + mi := &file_Gameapi_proto_msgTypes[550] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31645,7 +31792,7 @@ func (x *ReqChampshipRank) String() string { func (*ReqChampshipRank) ProtoMessage() {} func (x *ReqChampshipRank) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[548] + mi := &file_Gameapi_proto_msgTypes[550] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31658,7 +31805,7 @@ func (x *ReqChampshipRank) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqChampshipRank.ProtoReflect.Descriptor instead. func (*ReqChampshipRank) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{548} + return file_Gameapi_proto_rawDescGZIP(), []int{550} } type ResChampshipRank struct { @@ -31673,7 +31820,7 @@ type ResChampshipRank struct { func (x *ResChampshipRank) Reset() { *x = ResChampshipRank{} - mi := &file_Gameapi_proto_msgTypes[549] + mi := &file_Gameapi_proto_msgTypes[551] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31685,7 +31832,7 @@ func (x *ResChampshipRank) String() string { func (*ResChampshipRank) ProtoMessage() {} func (x *ResChampshipRank) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[549] + mi := &file_Gameapi_proto_msgTypes[551] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31698,7 +31845,7 @@ func (x *ResChampshipRank) ProtoReflect() protoreflect.Message { // Deprecated: Use ResChampshipRank.ProtoReflect.Descriptor instead. func (*ResChampshipRank) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{549} + return file_Gameapi_proto_rawDescGZIP(), []int{551} } func (x *ResChampshipRank) GetRankList() map[int32]*ResPlayerRank { @@ -31730,7 +31877,7 @@ type ReqChampshipPreRank struct { func (x *ReqChampshipPreRank) Reset() { *x = ReqChampshipPreRank{} - mi := &file_Gameapi_proto_msgTypes[550] + mi := &file_Gameapi_proto_msgTypes[552] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31742,7 +31889,7 @@ func (x *ReqChampshipPreRank) String() string { func (*ReqChampshipPreRank) ProtoMessage() {} func (x *ReqChampshipPreRank) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[550] + mi := &file_Gameapi_proto_msgTypes[552] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31755,7 +31902,7 @@ func (x *ReqChampshipPreRank) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqChampshipPreRank.ProtoReflect.Descriptor instead. func (*ReqChampshipPreRank) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{550} + return file_Gameapi_proto_rawDescGZIP(), []int{552} } type ResChampshipPreRank struct { @@ -31770,7 +31917,7 @@ type ResChampshipPreRank struct { func (x *ResChampshipPreRank) Reset() { *x = ResChampshipPreRank{} - mi := &file_Gameapi_proto_msgTypes[551] + mi := &file_Gameapi_proto_msgTypes[553] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31782,7 +31929,7 @@ func (x *ResChampshipPreRank) String() string { func (*ResChampshipPreRank) ProtoMessage() {} func (x *ResChampshipPreRank) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[551] + mi := &file_Gameapi_proto_msgTypes[553] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31795,7 +31942,7 @@ func (x *ResChampshipPreRank) ProtoReflect() protoreflect.Message { // Deprecated: Use ResChampshipPreRank.ProtoReflect.Descriptor instead. func (*ResChampshipPreRank) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{551} + return file_Gameapi_proto_rawDescGZIP(), []int{553} } func (x *ResChampshipPreRank) GetRankList() map[int32]*ResPlayerRank { @@ -31831,7 +31978,7 @@ type ResNotifyCard struct { func (x *ResNotifyCard) Reset() { *x = ResNotifyCard{} - mi := &file_Gameapi_proto_msgTypes[552] + mi := &file_Gameapi_proto_msgTypes[554] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31843,7 +31990,7 @@ func (x *ResNotifyCard) String() string { func (*ResNotifyCard) ProtoMessage() {} func (x *ResNotifyCard) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[552] + mi := &file_Gameapi_proto_msgTypes[554] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31856,7 +32003,7 @@ func (x *ResNotifyCard) ProtoReflect() protoreflect.Message { // Deprecated: Use ResNotifyCard.ProtoReflect.Descriptor instead. func (*ResNotifyCard) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{552} + return file_Gameapi_proto_rawDescGZIP(), []int{554} } func (x *ResNotifyCard) GetCard() map[int32]int32 { @@ -31890,7 +32037,7 @@ type ReqSetFacebookUrl struct { func (x *ReqSetFacebookUrl) Reset() { *x = ReqSetFacebookUrl{} - mi := &file_Gameapi_proto_msgTypes[553] + mi := &file_Gameapi_proto_msgTypes[555] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31902,7 +32049,7 @@ func (x *ReqSetFacebookUrl) String() string { func (*ReqSetFacebookUrl) ProtoMessage() {} func (x *ReqSetFacebookUrl) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[553] + mi := &file_Gameapi_proto_msgTypes[555] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31915,7 +32062,7 @@ func (x *ReqSetFacebookUrl) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqSetFacebookUrl.ProtoReflect.Descriptor instead. func (*ReqSetFacebookUrl) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{553} + return file_Gameapi_proto_rawDescGZIP(), []int{555} } func (x *ReqSetFacebookUrl) GetUrl() string { @@ -31936,7 +32083,7 @@ type ResSetFacebookUrl struct { func (x *ResSetFacebookUrl) Reset() { *x = ResSetFacebookUrl{} - mi := &file_Gameapi_proto_msgTypes[554] + mi := &file_Gameapi_proto_msgTypes[556] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31948,7 +32095,7 @@ func (x *ResSetFacebookUrl) String() string { func (*ResSetFacebookUrl) ProtoMessage() {} func (x *ResSetFacebookUrl) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[554] + mi := &file_Gameapi_proto_msgTypes[556] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31961,7 +32108,7 @@ func (x *ResSetFacebookUrl) ProtoReflect() protoreflect.Message { // Deprecated: Use ResSetFacebookUrl.ProtoReflect.Descriptor instead. func (*ResSetFacebookUrl) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{554} + return file_Gameapi_proto_rawDescGZIP(), []int{556} } func (x *ResSetFacebookUrl) GetCode() RES_CODE { @@ -31989,7 +32136,7 @@ type ReqInviteFriendData struct { func (x *ReqInviteFriendData) Reset() { *x = ReqInviteFriendData{} - mi := &file_Gameapi_proto_msgTypes[555] + mi := &file_Gameapi_proto_msgTypes[557] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32001,7 +32148,7 @@ func (x *ReqInviteFriendData) String() string { func (*ReqInviteFriendData) ProtoMessage() {} func (x *ReqInviteFriendData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[555] + mi := &file_Gameapi_proto_msgTypes[557] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32014,7 +32161,7 @@ func (x *ReqInviteFriendData) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqInviteFriendData.ProtoReflect.Descriptor instead. func (*ReqInviteFriendData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{555} + return file_Gameapi_proto_rawDescGZIP(), []int{557} } func (x *ReqInviteFriendData) GetDwUin() int32 { @@ -32035,7 +32182,7 @@ type ResInviteFriendData struct { func (x *ResInviteFriendData) Reset() { *x = ResInviteFriendData{} - mi := &file_Gameapi_proto_msgTypes[556] + mi := &file_Gameapi_proto_msgTypes[558] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32047,7 +32194,7 @@ func (x *ResInviteFriendData) String() string { func (*ResInviteFriendData) ProtoMessage() {} func (x *ResInviteFriendData) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[556] + mi := &file_Gameapi_proto_msgTypes[558] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32060,7 +32207,7 @@ func (x *ResInviteFriendData) ProtoReflect() protoreflect.Message { // Deprecated: Use ResInviteFriendData.ProtoReflect.Descriptor instead. func (*ResInviteFriendData) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{556} + return file_Gameapi_proto_rawDescGZIP(), []int{558} } func (x *ResInviteFriendData) GetIdLists() []int32 { @@ -32087,7 +32234,7 @@ type ReqSelfInvited struct { func (x *ReqSelfInvited) Reset() { *x = ReqSelfInvited{} - mi := &file_Gameapi_proto_msgTypes[557] + mi := &file_Gameapi_proto_msgTypes[559] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32099,7 +32246,7 @@ func (x *ReqSelfInvited) String() string { func (*ReqSelfInvited) ProtoMessage() {} func (x *ReqSelfInvited) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[557] + mi := &file_Gameapi_proto_msgTypes[559] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32112,7 +32259,7 @@ func (x *ReqSelfInvited) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqSelfInvited.ProtoReflect.Descriptor instead. func (*ReqSelfInvited) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{557} + return file_Gameapi_proto_rawDescGZIP(), []int{559} } func (x *ReqSelfInvited) GetInviterId() int32 { @@ -32132,7 +32279,7 @@ type ResSelfInvited struct { func (x *ResSelfInvited) Reset() { *x = ResSelfInvited{} - mi := &file_Gameapi_proto_msgTypes[558] + mi := &file_Gameapi_proto_msgTypes[560] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32144,7 +32291,7 @@ func (x *ResSelfInvited) String() string { func (*ResSelfInvited) ProtoMessage() {} func (x *ResSelfInvited) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[558] + mi := &file_Gameapi_proto_msgTypes[560] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32157,7 +32304,7 @@ func (x *ResSelfInvited) ProtoReflect() protoreflect.Message { // Deprecated: Use ResSelfInvited.ProtoReflect.Descriptor instead. func (*ResSelfInvited) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{558} + return file_Gameapi_proto_rawDescGZIP(), []int{560} } func (x *ResSelfInvited) GetResultCode() int32 { @@ -32178,7 +32325,7 @@ type NotifyInvitedSuccess struct { func (x *NotifyInvitedSuccess) Reset() { *x = NotifyInvitedSuccess{} - mi := &file_Gameapi_proto_msgTypes[559] + mi := &file_Gameapi_proto_msgTypes[561] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32190,7 +32337,7 @@ func (x *NotifyInvitedSuccess) String() string { func (*NotifyInvitedSuccess) ProtoMessage() {} func (x *NotifyInvitedSuccess) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[559] + mi := &file_Gameapi_proto_msgTypes[561] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32203,7 +32350,7 @@ func (x *NotifyInvitedSuccess) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyInvitedSuccess.ProtoReflect.Descriptor instead. func (*NotifyInvitedSuccess) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{559} + return file_Gameapi_proto_rawDescGZIP(), []int{561} } func (x *NotifyInvitedSuccess) GetResultCode() int32 { @@ -32230,7 +32377,7 @@ type ReqGetInviteReward struct { func (x *ReqGetInviteReward) Reset() { *x = ReqGetInviteReward{} - mi := &file_Gameapi_proto_msgTypes[560] + mi := &file_Gameapi_proto_msgTypes[562] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32242,7 +32389,7 @@ func (x *ReqGetInviteReward) String() string { func (*ReqGetInviteReward) ProtoMessage() {} func (x *ReqGetInviteReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[560] + mi := &file_Gameapi_proto_msgTypes[562] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32255,7 +32402,7 @@ func (x *ReqGetInviteReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGetInviteReward.ProtoReflect.Descriptor instead. func (*ReqGetInviteReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{560} + return file_Gameapi_proto_rawDescGZIP(), []int{562} } func (x *ReqGetInviteReward) GetGetIndex() int32 { @@ -32275,7 +32422,7 @@ type ResGetInviteReward struct { func (x *ResGetInviteReward) Reset() { *x = ResGetInviteReward{} - mi := &file_Gameapi_proto_msgTypes[561] + mi := &file_Gameapi_proto_msgTypes[563] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32287,7 +32434,7 @@ func (x *ResGetInviteReward) String() string { func (*ResGetInviteReward) ProtoMessage() {} func (x *ResGetInviteReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[561] + mi := &file_Gameapi_proto_msgTypes[563] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32300,7 +32447,7 @@ func (x *ResGetInviteReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGetInviteReward.ProtoReflect.Descriptor instead. func (*ResGetInviteReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{561} + return file_Gameapi_proto_rawDescGZIP(), []int{563} } func (x *ResGetInviteReward) GetResultCode() int32 { @@ -32320,7 +32467,7 @@ type ReqAutoAddInviteFriend struct { func (x *ReqAutoAddInviteFriend) Reset() { *x = ReqAutoAddInviteFriend{} - mi := &file_Gameapi_proto_msgTypes[562] + mi := &file_Gameapi_proto_msgTypes[564] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32332,7 +32479,7 @@ func (x *ReqAutoAddInviteFriend) String() string { func (*ReqAutoAddInviteFriend) ProtoMessage() {} func (x *ReqAutoAddInviteFriend) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[562] + mi := &file_Gameapi_proto_msgTypes[564] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32345,7 +32492,7 @@ func (x *ReqAutoAddInviteFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAutoAddInviteFriend.ProtoReflect.Descriptor instead. func (*ReqAutoAddInviteFriend) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{562} + return file_Gameapi_proto_rawDescGZIP(), []int{564} } func (x *ReqAutoAddInviteFriend) GetId() int32 { @@ -32365,7 +32512,7 @@ type ResAutoAddInviteFriend struct { func (x *ResAutoAddInviteFriend) Reset() { *x = ResAutoAddInviteFriend{} - mi := &file_Gameapi_proto_msgTypes[563] + mi := &file_Gameapi_proto_msgTypes[565] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32377,7 +32524,7 @@ func (x *ResAutoAddInviteFriend) String() string { func (*ResAutoAddInviteFriend) ProtoMessage() {} func (x *ResAutoAddInviteFriend) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[563] + mi := &file_Gameapi_proto_msgTypes[565] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32390,7 +32537,7 @@ func (x *ResAutoAddInviteFriend) ProtoReflect() protoreflect.Message { // Deprecated: Use ResAutoAddInviteFriend.ProtoReflect.Descriptor instead. func (*ResAutoAddInviteFriend) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{563} + return file_Gameapi_proto_rawDescGZIP(), []int{565} } func (x *ResAutoAddInviteFriend) GetResultCode() int32 { @@ -32409,7 +32556,7 @@ type ReqMining struct { func (x *ReqMining) Reset() { *x = ReqMining{} - mi := &file_Gameapi_proto_msgTypes[564] + mi := &file_Gameapi_proto_msgTypes[566] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32421,7 +32568,7 @@ func (x *ReqMining) String() string { func (*ReqMining) ProtoMessage() {} func (x *ReqMining) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[564] + mi := &file_Gameapi_proto_msgTypes[566] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32434,7 +32581,7 @@ func (x *ReqMining) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqMining.ProtoReflect.Descriptor instead. func (*ReqMining) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{564} + return file_Gameapi_proto_rawDescGZIP(), []int{566} } type ResMining struct { @@ -32454,7 +32601,7 @@ type ResMining struct { func (x *ResMining) Reset() { *x = ResMining{} - mi := &file_Gameapi_proto_msgTypes[565] + mi := &file_Gameapi_proto_msgTypes[567] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32466,7 +32613,7 @@ func (x *ResMining) String() string { func (*ResMining) ProtoMessage() {} func (x *ResMining) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[565] + mi := &file_Gameapi_proto_msgTypes[567] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32479,7 +32626,7 @@ func (x *ResMining) ProtoReflect() protoreflect.Message { // Deprecated: Use ResMining.ProtoReflect.Descriptor instead. func (*ResMining) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{565} + return file_Gameapi_proto_rawDescGZIP(), []int{567} } func (x *ResMining) GetId() int32 { @@ -32549,7 +32696,7 @@ type ReqMiningTake struct { func (x *ReqMiningTake) Reset() { *x = ReqMiningTake{} - mi := &file_Gameapi_proto_msgTypes[566] + mi := &file_Gameapi_proto_msgTypes[568] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32561,7 +32708,7 @@ func (x *ReqMiningTake) String() string { func (*ReqMiningTake) ProtoMessage() {} func (x *ReqMiningTake) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[566] + mi := &file_Gameapi_proto_msgTypes[568] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32574,7 +32721,7 @@ func (x *ReqMiningTake) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqMiningTake.ProtoReflect.Descriptor instead. func (*ReqMiningTake) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{566} + return file_Gameapi_proto_rawDescGZIP(), []int{568} } func (x *ReqMiningTake) GetMap() map[int32]string { @@ -32602,7 +32749,7 @@ type ResMiningTake struct { func (x *ResMiningTake) Reset() { *x = ResMiningTake{} - mi := &file_Gameapi_proto_msgTypes[567] + mi := &file_Gameapi_proto_msgTypes[569] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32614,7 +32761,7 @@ func (x *ResMiningTake) String() string { func (*ResMiningTake) ProtoMessage() {} func (x *ResMiningTake) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[567] + mi := &file_Gameapi_proto_msgTypes[569] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32627,7 +32774,7 @@ func (x *ResMiningTake) ProtoReflect() protoreflect.Message { // Deprecated: Use ResMiningTake.ProtoReflect.Descriptor instead. func (*ResMiningTake) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{567} + return file_Gameapi_proto_rawDescGZIP(), []int{569} } func (x *ResMiningTake) GetCode() RES_CODE { @@ -32652,7 +32799,7 @@ type ReqMiningReward struct { func (x *ReqMiningReward) Reset() { *x = ReqMiningReward{} - mi := &file_Gameapi_proto_msgTypes[568] + mi := &file_Gameapi_proto_msgTypes[570] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32664,7 +32811,7 @@ func (x *ReqMiningReward) String() string { func (*ReqMiningReward) ProtoMessage() {} func (x *ReqMiningReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[568] + mi := &file_Gameapi_proto_msgTypes[570] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32677,7 +32824,7 @@ func (x *ReqMiningReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqMiningReward.ProtoReflect.Descriptor instead. func (*ReqMiningReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{568} + return file_Gameapi_proto_rawDescGZIP(), []int{570} } type ResMiningReward struct { @@ -32691,7 +32838,7 @@ type ResMiningReward struct { func (x *ResMiningReward) Reset() { *x = ResMiningReward{} - mi := &file_Gameapi_proto_msgTypes[569] + mi := &file_Gameapi_proto_msgTypes[571] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32703,7 +32850,7 @@ func (x *ResMiningReward) String() string { func (*ResMiningReward) ProtoMessage() {} func (x *ResMiningReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[569] + mi := &file_Gameapi_proto_msgTypes[571] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32716,7 +32863,7 @@ func (x *ResMiningReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResMiningReward.ProtoReflect.Descriptor instead. func (*ResMiningReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{569} + return file_Gameapi_proto_rawDescGZIP(), []int{571} } func (x *ResMiningReward) GetCode() RES_CODE { @@ -32743,7 +32890,7 @@ type ResActRed struct { func (x *ResActRed) Reset() { *x = ResActRed{} - mi := &file_Gameapi_proto_msgTypes[570] + mi := &file_Gameapi_proto_msgTypes[572] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32755,7 +32902,7 @@ func (x *ResActRed) String() string { func (*ResActRed) ProtoMessage() {} func (x *ResActRed) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[570] + mi := &file_Gameapi_proto_msgTypes[572] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32768,7 +32915,7 @@ func (x *ResActRed) ProtoReflect() protoreflect.Message { // Deprecated: Use ResActRed.ProtoReflect.Descriptor instead. func (*ResActRed) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{570} + return file_Gameapi_proto_rawDescGZIP(), []int{572} } func (x *ResActRed) GetRed() map[int32]int32 { @@ -32790,7 +32937,7 @@ type NotifyActRed struct { func (x *NotifyActRed) Reset() { *x = NotifyActRed{} - mi := &file_Gameapi_proto_msgTypes[571] + mi := &file_Gameapi_proto_msgTypes[573] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32802,7 +32949,7 @@ func (x *NotifyActRed) String() string { func (*NotifyActRed) ProtoMessage() {} func (x *NotifyActRed) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[571] + mi := &file_Gameapi_proto_msgTypes[573] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32815,7 +32962,7 @@ func (x *NotifyActRed) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyActRed.ProtoReflect.Descriptor instead. func (*NotifyActRed) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{571} + return file_Gameapi_proto_rawDescGZIP(), []int{573} } func (x *NotifyActRed) GetId() int32 { @@ -32843,7 +32990,7 @@ type ActivityNotify struct { func (x *ActivityNotify) Reset() { *x = ActivityNotify{} - mi := &file_Gameapi_proto_msgTypes[572] + mi := &file_Gameapi_proto_msgTypes[574] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32855,7 +33002,7 @@ func (x *ActivityNotify) String() string { func (*ActivityNotify) ProtoMessage() {} func (x *ActivityNotify) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[572] + mi := &file_Gameapi_proto_msgTypes[574] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32868,7 +33015,7 @@ func (x *ActivityNotify) ProtoReflect() protoreflect.Message { // Deprecated: Use ActivityNotify.ProtoReflect.Descriptor instead. func (*ActivityNotify) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{572} + return file_Gameapi_proto_rawDescGZIP(), []int{574} } func (x *ActivityNotify) GetInfo() *ActivityInfo { @@ -32888,7 +33035,7 @@ type ResItem struct { func (x *ResItem) Reset() { *x = ResItem{} - mi := &file_Gameapi_proto_msgTypes[573] + mi := &file_Gameapi_proto_msgTypes[575] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32900,7 +33047,7 @@ func (x *ResItem) String() string { func (*ResItem) ProtoMessage() {} func (x *ResItem) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[573] + mi := &file_Gameapi_proto_msgTypes[575] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32913,7 +33060,7 @@ func (x *ResItem) ProtoReflect() protoreflect.Message { // Deprecated: Use ResItem.ProtoReflect.Descriptor instead. func (*ResItem) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{573} + return file_Gameapi_proto_rawDescGZIP(), []int{575} } func (x *ResItem) GetItem() map[int32]int32 { @@ -32933,7 +33080,7 @@ type ItemNotify struct { func (x *ItemNotify) Reset() { *x = ItemNotify{} - mi := &file_Gameapi_proto_msgTypes[574] + mi := &file_Gameapi_proto_msgTypes[576] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32945,7 +33092,7 @@ func (x *ItemNotify) String() string { func (*ItemNotify) ProtoMessage() {} func (x *ItemNotify) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[574] + mi := &file_Gameapi_proto_msgTypes[576] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -32958,7 +33105,7 @@ func (x *ItemNotify) ProtoReflect() protoreflect.Message { // Deprecated: Use ItemNotify.ProtoReflect.Descriptor instead. func (*ItemNotify) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{574} + return file_Gameapi_proto_rawDescGZIP(), []int{576} } func (x *ItemNotify) GetItem() map[int32]int32 { @@ -32977,7 +33124,7 @@ type ReqGuessColor struct { func (x *ReqGuessColor) Reset() { *x = ReqGuessColor{} - mi := &file_Gameapi_proto_msgTypes[575] + mi := &file_Gameapi_proto_msgTypes[577] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -32989,7 +33136,7 @@ func (x *ReqGuessColor) String() string { func (*ReqGuessColor) ProtoMessage() {} func (x *ReqGuessColor) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[575] + mi := &file_Gameapi_proto_msgTypes[577] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33002,7 +33149,7 @@ func (x *ReqGuessColor) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGuessColor.ProtoReflect.Descriptor instead. func (*ReqGuessColor) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{575} + return file_Gameapi_proto_rawDescGZIP(), []int{577} } type ResGuessColor struct { @@ -33022,7 +33169,7 @@ type ResGuessColor struct { func (x *ResGuessColor) Reset() { *x = ResGuessColor{} - mi := &file_Gameapi_proto_msgTypes[576] + mi := &file_Gameapi_proto_msgTypes[578] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33034,7 +33181,7 @@ func (x *ResGuessColor) String() string { func (*ResGuessColor) ProtoMessage() {} func (x *ResGuessColor) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[576] + mi := &file_Gameapi_proto_msgTypes[578] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33047,7 +33194,7 @@ func (x *ResGuessColor) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGuessColor.ProtoReflect.Descriptor instead. func (*ResGuessColor) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{576} + return file_Gameapi_proto_rawDescGZIP(), []int{578} } func (x *ResGuessColor) GetId() int32 { @@ -33119,7 +33266,7 @@ type Opponent struct { func (x *Opponent) Reset() { *x = Opponent{} - mi := &file_Gameapi_proto_msgTypes[577] + mi := &file_Gameapi_proto_msgTypes[579] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33131,7 +33278,7 @@ func (x *Opponent) String() string { func (*Opponent) ProtoMessage() {} func (x *Opponent) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[577] + mi := &file_Gameapi_proto_msgTypes[579] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33144,7 +33291,7 @@ func (x *Opponent) ProtoReflect() protoreflect.Message { // Deprecated: Use Opponent.ProtoReflect.Descriptor instead. func (*Opponent) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{577} + return file_Gameapi_proto_rawDescGZIP(), []int{579} } func (x *Opponent) GetName() string { @@ -33185,7 +33332,7 @@ type ReqGuessColorTake struct { func (x *ReqGuessColorTake) Reset() { *x = ReqGuessColorTake{} - mi := &file_Gameapi_proto_msgTypes[578] + mi := &file_Gameapi_proto_msgTypes[580] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33197,7 +33344,7 @@ func (x *ReqGuessColorTake) String() string { func (*ReqGuessColorTake) ProtoMessage() {} func (x *ReqGuessColorTake) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[578] + mi := &file_Gameapi_proto_msgTypes[580] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33210,7 +33357,7 @@ func (x *ReqGuessColorTake) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGuessColorTake.ProtoReflect.Descriptor instead. func (*ReqGuessColorTake) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{578} + return file_Gameapi_proto_rawDescGZIP(), []int{580} } func (x *ReqGuessColorTake) GetMap() map[int32]int32 { @@ -33231,7 +33378,7 @@ type ResGuessColorTake struct { func (x *ResGuessColorTake) Reset() { *x = ResGuessColorTake{} - mi := &file_Gameapi_proto_msgTypes[579] + mi := &file_Gameapi_proto_msgTypes[581] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33243,7 +33390,7 @@ func (x *ResGuessColorTake) String() string { func (*ResGuessColorTake) ProtoMessage() {} func (x *ResGuessColorTake) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[579] + mi := &file_Gameapi_proto_msgTypes[581] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33256,7 +33403,7 @@ func (x *ResGuessColorTake) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGuessColorTake.ProtoReflect.Descriptor instead. func (*ResGuessColorTake) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{579} + return file_Gameapi_proto_rawDescGZIP(), []int{581} } func (x *ResGuessColorTake) GetCode() RES_CODE { @@ -33281,7 +33428,7 @@ type ReqGuessColorReward struct { func (x *ReqGuessColorReward) Reset() { *x = ReqGuessColorReward{} - mi := &file_Gameapi_proto_msgTypes[580] + mi := &file_Gameapi_proto_msgTypes[582] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33293,7 +33440,7 @@ func (x *ReqGuessColorReward) String() string { func (*ReqGuessColorReward) ProtoMessage() {} func (x *ReqGuessColorReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[580] + mi := &file_Gameapi_proto_msgTypes[582] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33306,7 +33453,7 @@ func (x *ReqGuessColorReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqGuessColorReward.ProtoReflect.Descriptor instead. func (*ReqGuessColorReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{580} + return file_Gameapi_proto_rawDescGZIP(), []int{582} } type ResGuessColorReward struct { @@ -33320,7 +33467,7 @@ type ResGuessColorReward struct { func (x *ResGuessColorReward) Reset() { *x = ResGuessColorReward{} - mi := &file_Gameapi_proto_msgTypes[581] + mi := &file_Gameapi_proto_msgTypes[583] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33332,7 +33479,7 @@ func (x *ResGuessColorReward) String() string { func (*ResGuessColorReward) ProtoMessage() {} func (x *ResGuessColorReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[581] + mi := &file_Gameapi_proto_msgTypes[583] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33345,7 +33492,7 @@ func (x *ResGuessColorReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResGuessColorReward.ProtoReflect.Descriptor instead. func (*ResGuessColorReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{581} + return file_Gameapi_proto_rawDescGZIP(), []int{583} } func (x *ResGuessColorReward) GetCode() RES_CODE { @@ -33370,7 +33517,7 @@ type ReqRace struct { func (x *ReqRace) Reset() { *x = ReqRace{} - mi := &file_Gameapi_proto_msgTypes[582] + mi := &file_Gameapi_proto_msgTypes[584] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33382,7 +33529,7 @@ func (x *ReqRace) String() string { func (*ReqRace) ProtoMessage() {} func (x *ReqRace) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[582] + mi := &file_Gameapi_proto_msgTypes[584] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33395,7 +33542,7 @@ func (x *ReqRace) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqRace.ProtoReflect.Descriptor instead. func (*ReqRace) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{582} + return file_Gameapi_proto_rawDescGZIP(), []int{584} } type ResRace struct { @@ -33416,7 +33563,7 @@ type ResRace struct { func (x *ResRace) Reset() { *x = ResRace{} - mi := &file_Gameapi_proto_msgTypes[583] + mi := &file_Gameapi_proto_msgTypes[585] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33428,7 +33575,7 @@ func (x *ResRace) String() string { func (*ResRace) ProtoMessage() {} func (x *ResRace) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[583] + mi := &file_Gameapi_proto_msgTypes[585] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33441,7 +33588,7 @@ func (x *ResRace) ProtoReflect() protoreflect.Message { // Deprecated: Use ResRace.ProtoReflect.Descriptor instead. func (*ResRace) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{583} + return file_Gameapi_proto_rawDescGZIP(), []int{585} } func (x *ResRace) GetId() int32 { @@ -33519,7 +33666,7 @@ type Raceopponent struct { func (x *Raceopponent) Reset() { *x = Raceopponent{} - mi := &file_Gameapi_proto_msgTypes[584] + mi := &file_Gameapi_proto_msgTypes[586] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33531,7 +33678,7 @@ func (x *Raceopponent) String() string { func (*Raceopponent) ProtoMessage() {} func (x *Raceopponent) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[584] + mi := &file_Gameapi_proto_msgTypes[586] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33544,7 +33691,7 @@ func (x *Raceopponent) ProtoReflect() protoreflect.Message { // Deprecated: Use Raceopponent.ProtoReflect.Descriptor instead. func (*Raceopponent) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{584} + return file_Gameapi_proto_rawDescGZIP(), []int{586} } func (x *Raceopponent) GetId() int32 { @@ -33576,7 +33723,7 @@ type ReqRaceStart struct { func (x *ReqRaceStart) Reset() { *x = ReqRaceStart{} - mi := &file_Gameapi_proto_msgTypes[585] + mi := &file_Gameapi_proto_msgTypes[587] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33588,7 +33735,7 @@ func (x *ReqRaceStart) String() string { func (*ReqRaceStart) ProtoMessage() {} func (x *ReqRaceStart) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[585] + mi := &file_Gameapi_proto_msgTypes[587] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33601,7 +33748,7 @@ func (x *ReqRaceStart) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqRaceStart.ProtoReflect.Descriptor instead. func (*ReqRaceStart) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{585} + return file_Gameapi_proto_rawDescGZIP(), []int{587} } type ResRaceStart struct { @@ -33615,7 +33762,7 @@ type ResRaceStart struct { func (x *ResRaceStart) Reset() { *x = ResRaceStart{} - mi := &file_Gameapi_proto_msgTypes[586] + mi := &file_Gameapi_proto_msgTypes[588] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33627,7 +33774,7 @@ func (x *ResRaceStart) String() string { func (*ResRaceStart) ProtoMessage() {} func (x *ResRaceStart) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[586] + mi := &file_Gameapi_proto_msgTypes[588] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33640,7 +33787,7 @@ func (x *ResRaceStart) ProtoReflect() protoreflect.Message { // Deprecated: Use ResRaceStart.ProtoReflect.Descriptor instead. func (*ResRaceStart) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{586} + return file_Gameapi_proto_rawDescGZIP(), []int{588} } func (x *ResRaceStart) GetCode() RES_CODE { @@ -33665,7 +33812,7 @@ type ReqRaceReward struct { func (x *ReqRaceReward) Reset() { *x = ReqRaceReward{} - mi := &file_Gameapi_proto_msgTypes[587] + mi := &file_Gameapi_proto_msgTypes[589] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33677,7 +33824,7 @@ func (x *ReqRaceReward) String() string { func (*ReqRaceReward) ProtoMessage() {} func (x *ReqRaceReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[587] + mi := &file_Gameapi_proto_msgTypes[589] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33690,7 +33837,7 @@ func (x *ReqRaceReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqRaceReward.ProtoReflect.Descriptor instead. func (*ReqRaceReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{587} + return file_Gameapi_proto_rawDescGZIP(), []int{589} } type ResRaceReward struct { @@ -33704,7 +33851,7 @@ type ResRaceReward struct { func (x *ResRaceReward) Reset() { *x = ResRaceReward{} - mi := &file_Gameapi_proto_msgTypes[588] + mi := &file_Gameapi_proto_msgTypes[590] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33716,7 +33863,7 @@ func (x *ResRaceReward) String() string { func (*ResRaceReward) ProtoMessage() {} func (x *ResRaceReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[588] + mi := &file_Gameapi_proto_msgTypes[590] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33729,7 +33876,7 @@ func (x *ResRaceReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResRaceReward.ProtoReflect.Descriptor instead. func (*ResRaceReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{588} + return file_Gameapi_proto_rawDescGZIP(), []int{590} } func (x *ResRaceReward) GetCode() RES_CODE { @@ -33755,7 +33902,7 @@ type ReqPlayroom struct { func (x *ReqPlayroom) Reset() { *x = ReqPlayroom{} - mi := &file_Gameapi_proto_msgTypes[589] + mi := &file_Gameapi_proto_msgTypes[591] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33767,7 +33914,7 @@ func (x *ReqPlayroom) String() string { func (*ReqPlayroom) ProtoMessage() {} func (x *ReqPlayroom) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[589] + mi := &file_Gameapi_proto_msgTypes[591] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33780,7 +33927,7 @@ func (x *ReqPlayroom) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroom.ProtoReflect.Descriptor instead. func (*ReqPlayroom) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{589} + return file_Gameapi_proto_rawDescGZIP(), []int{591} } type ResPlayroom struct { @@ -33804,7 +33951,7 @@ type ResPlayroom struct { func (x *ResPlayroom) Reset() { *x = ResPlayroom{} - mi := &file_Gameapi_proto_msgTypes[590] + mi := &file_Gameapi_proto_msgTypes[592] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33816,7 +33963,7 @@ func (x *ResPlayroom) String() string { func (*ResPlayroom) ProtoMessage() {} func (x *ResPlayroom) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[590] + mi := &file_Gameapi_proto_msgTypes[592] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33829,7 +33976,7 @@ func (x *ResPlayroom) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroom.ProtoReflect.Descriptor instead. func (*ResPlayroom) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{590} + return file_Gameapi_proto_rawDescGZIP(), []int{592} } func (x *ResPlayroom) GetStatus() int32 { @@ -33927,7 +34074,7 @@ type NotifyPlayroomWork struct { func (x *NotifyPlayroomWork) Reset() { *x = NotifyPlayroomWork{} - mi := &file_Gameapi_proto_msgTypes[591] + mi := &file_Gameapi_proto_msgTypes[593] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33939,7 +34086,7 @@ func (x *NotifyPlayroomWork) String() string { func (*NotifyPlayroomWork) ProtoMessage() {} func (x *NotifyPlayroomWork) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[591] + mi := &file_Gameapi_proto_msgTypes[593] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -33952,7 +34099,7 @@ func (x *NotifyPlayroomWork) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyPlayroomWork.ProtoReflect.Descriptor instead. func (*NotifyPlayroomWork) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{591} + return file_Gameapi_proto_rawDescGZIP(), []int{593} } func (x *NotifyPlayroomWork) GetStartTime() int32 { @@ -33980,7 +34127,7 @@ type NotifyPlayroomLose struct { func (x *NotifyPlayroomLose) Reset() { *x = NotifyPlayroomLose{} - mi := &file_Gameapi_proto_msgTypes[592] + mi := &file_Gameapi_proto_msgTypes[594] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -33992,7 +34139,7 @@ func (x *NotifyPlayroomLose) String() string { func (*NotifyPlayroomLose) ProtoMessage() {} func (x *NotifyPlayroomLose) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[592] + mi := &file_Gameapi_proto_msgTypes[594] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34005,7 +34152,7 @@ func (x *NotifyPlayroomLose) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyPlayroomLose.ProtoReflect.Descriptor instead. func (*NotifyPlayroomLose) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{592} + return file_Gameapi_proto_rawDescGZIP(), []int{594} } func (x *NotifyPlayroomLose) GetLoseItem() []*ItemInfo { @@ -34033,7 +34180,7 @@ type NotifyPlayroomMood struct { func (x *NotifyPlayroomMood) Reset() { *x = NotifyPlayroomMood{} - mi := &file_Gameapi_proto_msgTypes[593] + mi := &file_Gameapi_proto_msgTypes[595] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34045,7 +34192,7 @@ func (x *NotifyPlayroomMood) String() string { func (*NotifyPlayroomMood) ProtoMessage() {} func (x *NotifyPlayroomMood) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[593] + mi := &file_Gameapi_proto_msgTypes[595] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34058,7 +34205,7 @@ func (x *NotifyPlayroomMood) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyPlayroomMood.ProtoReflect.Descriptor instead. func (*NotifyPlayroomMood) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{593} + return file_Gameapi_proto_rawDescGZIP(), []int{595} } func (x *NotifyPlayroomMood) GetAllMood() int32 { @@ -34089,7 +34236,7 @@ type FriendRoom struct { func (x *FriendRoom) Reset() { *x = FriendRoom{} - mi := &file_Gameapi_proto_msgTypes[594] + mi := &file_Gameapi_proto_msgTypes[596] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34101,7 +34248,7 @@ func (x *FriendRoom) String() string { func (*FriendRoom) ProtoMessage() {} func (x *FriendRoom) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[594] + mi := &file_Gameapi_proto_msgTypes[596] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34114,7 +34261,7 @@ func (x *FriendRoom) ProtoReflect() protoreflect.Message { // Deprecated: Use FriendRoom.ProtoReflect.Descriptor instead. func (*FriendRoom) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{594} + return file_Gameapi_proto_rawDescGZIP(), []int{596} } func (x *FriendRoom) GetUid() int32 { @@ -34166,7 +34313,7 @@ type RoomOpponent struct { func (x *RoomOpponent) Reset() { *x = RoomOpponent{} - mi := &file_Gameapi_proto_msgTypes[595] + mi := &file_Gameapi_proto_msgTypes[597] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34178,7 +34325,7 @@ func (x *RoomOpponent) String() string { func (*RoomOpponent) ProtoMessage() {} func (x *RoomOpponent) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[595] + mi := &file_Gameapi_proto_msgTypes[597] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34191,7 +34338,7 @@ func (x *RoomOpponent) ProtoReflect() protoreflect.Message { // Deprecated: Use RoomOpponent.ProtoReflect.Descriptor instead. func (*RoomOpponent) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{595} + return file_Gameapi_proto_rawDescGZIP(), []int{597} } func (x *RoomOpponent) GetUid() int32 { @@ -34240,7 +34387,7 @@ type ReqPlayroomInfo struct { func (x *ReqPlayroomInfo) Reset() { *x = ReqPlayroomInfo{} - mi := &file_Gameapi_proto_msgTypes[596] + mi := &file_Gameapi_proto_msgTypes[598] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34252,7 +34399,7 @@ func (x *ReqPlayroomInfo) String() string { func (*ReqPlayroomInfo) ProtoMessage() {} func (x *ReqPlayroomInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[596] + mi := &file_Gameapi_proto_msgTypes[598] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34265,7 +34412,7 @@ func (x *ReqPlayroomInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomInfo.ProtoReflect.Descriptor instead. func (*ReqPlayroomInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{596} + return file_Gameapi_proto_rawDescGZIP(), []int{598} } func (x *ReqPlayroomInfo) GetUid() int32 { @@ -34295,7 +34442,7 @@ type ResPlayroomInfo struct { func (x *ResPlayroomInfo) Reset() { *x = ResPlayroomInfo{} - mi := &file_Gameapi_proto_msgTypes[597] + mi := &file_Gameapi_proto_msgTypes[599] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34307,7 +34454,7 @@ func (x *ResPlayroomInfo) String() string { func (*ResPlayroomInfo) ProtoMessage() {} func (x *ResPlayroomInfo) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[597] + mi := &file_Gameapi_proto_msgTypes[599] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34320,7 +34467,7 @@ func (x *ResPlayroomInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomInfo.ProtoReflect.Descriptor instead. func (*ResPlayroomInfo) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{597} + return file_Gameapi_proto_rawDescGZIP(), []int{599} } func (x *ResPlayroomInfo) GetUid() int32 { @@ -34411,7 +34558,7 @@ type ReqPlayroomFlip struct { func (x *ReqPlayroomFlip) Reset() { *x = ReqPlayroomFlip{} - mi := &file_Gameapi_proto_msgTypes[598] + mi := &file_Gameapi_proto_msgTypes[600] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34423,7 +34570,7 @@ func (x *ReqPlayroomFlip) String() string { func (*ReqPlayroomFlip) ProtoMessage() {} func (x *ReqPlayroomFlip) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[598] + mi := &file_Gameapi_proto_msgTypes[600] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34436,7 +34583,7 @@ func (x *ReqPlayroomFlip) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomFlip.ProtoReflect.Descriptor instead. func (*ReqPlayroomFlip) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{598} + return file_Gameapi_proto_rawDescGZIP(), []int{600} } func (x *ReqPlayroomFlip) GetId() int32 { @@ -34459,7 +34606,7 @@ type ResPlayroomFlip struct { func (x *ResPlayroomFlip) Reset() { *x = ResPlayroomFlip{} - mi := &file_Gameapi_proto_msgTypes[599] + mi := &file_Gameapi_proto_msgTypes[601] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34471,7 +34618,7 @@ func (x *ResPlayroomFlip) String() string { func (*ResPlayroomFlip) ProtoMessage() {} func (x *ResPlayroomFlip) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[599] + mi := &file_Gameapi_proto_msgTypes[601] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34484,7 +34631,7 @@ func (x *ResPlayroomFlip) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomFlip.ProtoReflect.Descriptor instead. func (*ResPlayroomFlip) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{599} + return file_Gameapi_proto_rawDescGZIP(), []int{601} } func (x *ResPlayroomFlip) GetCode() RES_CODE { @@ -34525,7 +34672,7 @@ type ReqPlayroomGame struct { func (x *ReqPlayroomGame) Reset() { *x = ReqPlayroomGame{} - mi := &file_Gameapi_proto_msgTypes[600] + mi := &file_Gameapi_proto_msgTypes[602] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34537,7 +34684,7 @@ func (x *ReqPlayroomGame) String() string { func (*ReqPlayroomGame) ProtoMessage() {} func (x *ReqPlayroomGame) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[600] + mi := &file_Gameapi_proto_msgTypes[602] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34550,7 +34697,7 @@ func (x *ReqPlayroomGame) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomGame.ProtoReflect.Descriptor instead. func (*ReqPlayroomGame) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{600} + return file_Gameapi_proto_rawDescGZIP(), []int{602} } func (x *ReqPlayroomGame) GetType() int32 { @@ -34573,7 +34720,7 @@ type ResPlayroomGame struct { func (x *ResPlayroomGame) Reset() { *x = ResPlayroomGame{} - mi := &file_Gameapi_proto_msgTypes[601] + mi := &file_Gameapi_proto_msgTypes[603] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34585,7 +34732,7 @@ func (x *ResPlayroomGame) String() string { func (*ResPlayroomGame) ProtoMessage() {} func (x *ResPlayroomGame) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[601] + mi := &file_Gameapi_proto_msgTypes[603] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34598,7 +34745,7 @@ func (x *ResPlayroomGame) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomGame.ProtoReflect.Descriptor instead. func (*ResPlayroomGame) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{601} + return file_Gameapi_proto_rawDescGZIP(), []int{603} } func (x *ResPlayroomGame) GetCode() RES_CODE { @@ -34640,7 +34787,7 @@ type ReqPlayroomInteract struct { func (x *ReqPlayroomInteract) Reset() { *x = ReqPlayroomInteract{} - mi := &file_Gameapi_proto_msgTypes[602] + mi := &file_Gameapi_proto_msgTypes[604] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34652,7 +34799,7 @@ func (x *ReqPlayroomInteract) String() string { func (*ReqPlayroomInteract) ProtoMessage() {} func (x *ReqPlayroomInteract) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[602] + mi := &file_Gameapi_proto_msgTypes[604] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34665,7 +34812,7 @@ func (x *ReqPlayroomInteract) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomInteract.ProtoReflect.Descriptor instead. func (*ReqPlayroomInteract) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{602} + return file_Gameapi_proto_rawDescGZIP(), []int{604} } func (x *ReqPlayroomInteract) GetId() int32 { @@ -34693,7 +34840,7 @@ type ResPlayroomInteract struct { func (x *ResPlayroomInteract) Reset() { *x = ResPlayroomInteract{} - mi := &file_Gameapi_proto_msgTypes[603] + mi := &file_Gameapi_proto_msgTypes[605] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34705,7 +34852,7 @@ func (x *ResPlayroomInteract) String() string { func (*ResPlayroomInteract) ProtoMessage() {} func (x *ResPlayroomInteract) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[603] + mi := &file_Gameapi_proto_msgTypes[605] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34718,7 +34865,7 @@ func (x *ResPlayroomInteract) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomInteract.ProtoReflect.Descriptor instead. func (*ResPlayroomInteract) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{603} + return file_Gameapi_proto_rawDescGZIP(), []int{605} } func (x *ResPlayroomInteract) GetCode() RES_CODE { @@ -34745,7 +34892,7 @@ type ReqPlayroomSetRoom struct { func (x *ReqPlayroomSetRoom) Reset() { *x = ReqPlayroomSetRoom{} - mi := &file_Gameapi_proto_msgTypes[604] + mi := &file_Gameapi_proto_msgTypes[606] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34757,7 +34904,7 @@ func (x *ReqPlayroomSetRoom) String() string { func (*ReqPlayroomSetRoom) ProtoMessage() {} func (x *ReqPlayroomSetRoom) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[604] + mi := &file_Gameapi_proto_msgTypes[606] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34770,7 +34917,7 @@ func (x *ReqPlayroomSetRoom) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomSetRoom.ProtoReflect.Descriptor instead. func (*ReqPlayroomSetRoom) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{604} + return file_Gameapi_proto_rawDescGZIP(), []int{606} } func (x *ReqPlayroomSetRoom) GetPlayroom() map[int32]int32 { @@ -34791,7 +34938,7 @@ type ResPlayroomSetRoom struct { func (x *ResPlayroomSetRoom) Reset() { *x = ResPlayroomSetRoom{} - mi := &file_Gameapi_proto_msgTypes[605] + mi := &file_Gameapi_proto_msgTypes[607] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34803,7 +34950,7 @@ func (x *ResPlayroomSetRoom) String() string { func (*ResPlayroomSetRoom) ProtoMessage() {} func (x *ResPlayroomSetRoom) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[605] + mi := &file_Gameapi_proto_msgTypes[607] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34816,7 +34963,7 @@ func (x *ResPlayroomSetRoom) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomSetRoom.ProtoReflect.Descriptor instead. func (*ResPlayroomSetRoom) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{605} + return file_Gameapi_proto_rawDescGZIP(), []int{607} } func (x *ResPlayroomSetRoom) GetCode() RES_CODE { @@ -34843,7 +34990,7 @@ type ReqPlayroomSelectReward struct { func (x *ReqPlayroomSelectReward) Reset() { *x = ReqPlayroomSelectReward{} - mi := &file_Gameapi_proto_msgTypes[606] + mi := &file_Gameapi_proto_msgTypes[608] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34855,7 +35002,7 @@ func (x *ReqPlayroomSelectReward) String() string { func (*ReqPlayroomSelectReward) ProtoMessage() {} func (x *ReqPlayroomSelectReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[606] + mi := &file_Gameapi_proto_msgTypes[608] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34868,7 +35015,7 @@ func (x *ReqPlayroomSelectReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomSelectReward.ProtoReflect.Descriptor instead. func (*ReqPlayroomSelectReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{606} + return file_Gameapi_proto_rawDescGZIP(), []int{608} } func (x *ReqPlayroomSelectReward) GetId() int32 { @@ -34889,7 +35036,7 @@ type ResPlayroomSelectReward struct { func (x *ResPlayroomSelectReward) Reset() { *x = ResPlayroomSelectReward{} - mi := &file_Gameapi_proto_msgTypes[607] + mi := &file_Gameapi_proto_msgTypes[609] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34901,7 +35048,7 @@ func (x *ResPlayroomSelectReward) String() string { func (*ResPlayroomSelectReward) ProtoMessage() {} func (x *ResPlayroomSelectReward) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[607] + mi := &file_Gameapi_proto_msgTypes[609] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34914,7 +35061,7 @@ func (x *ResPlayroomSelectReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomSelectReward.ProtoReflect.Descriptor instead. func (*ResPlayroomSelectReward) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{607} + return file_Gameapi_proto_rawDescGZIP(), []int{609} } func (x *ResPlayroomSelectReward) GetCode() RES_CODE { @@ -34939,7 +35086,7 @@ type ReqPlayroomLose struct { func (x *ReqPlayroomLose) Reset() { *x = ReqPlayroomLose{} - mi := &file_Gameapi_proto_msgTypes[608] + mi := &file_Gameapi_proto_msgTypes[610] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34951,7 +35098,7 @@ func (x *ReqPlayroomLose) String() string { func (*ReqPlayroomLose) ProtoMessage() {} func (x *ReqPlayroomLose) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[608] + mi := &file_Gameapi_proto_msgTypes[610] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -34964,7 +35111,7 @@ func (x *ReqPlayroomLose) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomLose.ProtoReflect.Descriptor instead. func (*ReqPlayroomLose) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{608} + return file_Gameapi_proto_rawDescGZIP(), []int{610} } type ResPlayroomLose struct { @@ -34978,7 +35125,7 @@ type ResPlayroomLose struct { func (x *ResPlayroomLose) Reset() { *x = ResPlayroomLose{} - mi := &file_Gameapi_proto_msgTypes[609] + mi := &file_Gameapi_proto_msgTypes[611] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -34990,7 +35137,7 @@ func (x *ResPlayroomLose) String() string { func (*ResPlayroomLose) ProtoMessage() {} func (x *ResPlayroomLose) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[609] + mi := &file_Gameapi_proto_msgTypes[611] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35003,7 +35150,7 @@ func (x *ResPlayroomLose) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomLose.ProtoReflect.Descriptor instead. func (*ResPlayroomLose) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{609} + return file_Gameapi_proto_rawDescGZIP(), []int{611} } func (x *ResPlayroomLose) GetCode() RES_CODE { @@ -35029,7 +35176,7 @@ type ReqPlayroomWork struct { func (x *ReqPlayroomWork) Reset() { *x = ReqPlayroomWork{} - mi := &file_Gameapi_proto_msgTypes[610] + mi := &file_Gameapi_proto_msgTypes[612] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35041,7 +35188,7 @@ func (x *ReqPlayroomWork) String() string { func (*ReqPlayroomWork) ProtoMessage() {} func (x *ReqPlayroomWork) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[610] + mi := &file_Gameapi_proto_msgTypes[612] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35054,7 +35201,7 @@ func (x *ReqPlayroomWork) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomWork.ProtoReflect.Descriptor instead. func (*ReqPlayroomWork) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{610} + return file_Gameapi_proto_rawDescGZIP(), []int{612} } type ResPlayroomWork struct { @@ -35068,7 +35215,7 @@ type ResPlayroomWork struct { func (x *ResPlayroomWork) Reset() { *x = ResPlayroomWork{} - mi := &file_Gameapi_proto_msgTypes[611] + mi := &file_Gameapi_proto_msgTypes[613] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35080,7 +35227,7 @@ func (x *ResPlayroomWork) String() string { func (*ResPlayroomWork) ProtoMessage() {} func (x *ResPlayroomWork) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[611] + mi := &file_Gameapi_proto_msgTypes[613] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35093,7 +35240,7 @@ func (x *ResPlayroomWork) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomWork.ProtoReflect.Descriptor instead. func (*ResPlayroomWork) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{611} + return file_Gameapi_proto_rawDescGZIP(), []int{613} } func (x *ResPlayroomWork) GetCode() RES_CODE { @@ -35119,7 +35266,7 @@ type ReqPlayroomRest struct { func (x *ReqPlayroomRest) Reset() { *x = ReqPlayroomRest{} - mi := &file_Gameapi_proto_msgTypes[612] + mi := &file_Gameapi_proto_msgTypes[614] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35131,7 +35278,7 @@ func (x *ReqPlayroomRest) String() string { func (*ReqPlayroomRest) ProtoMessage() {} func (x *ReqPlayroomRest) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[612] + mi := &file_Gameapi_proto_msgTypes[614] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35144,7 +35291,7 @@ func (x *ReqPlayroomRest) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomRest.ProtoReflect.Descriptor instead. func (*ReqPlayroomRest) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{612} + return file_Gameapi_proto_rawDescGZIP(), []int{614} } type ResPlayroomRest struct { @@ -35158,7 +35305,7 @@ type ResPlayroomRest struct { func (x *ResPlayroomRest) Reset() { *x = ResPlayroomRest{} - mi := &file_Gameapi_proto_msgTypes[613] + mi := &file_Gameapi_proto_msgTypes[615] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35170,7 +35317,7 @@ func (x *ResPlayroomRest) String() string { func (*ResPlayroomRest) ProtoMessage() {} func (x *ResPlayroomRest) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[613] + mi := &file_Gameapi_proto_msgTypes[615] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35183,7 +35330,7 @@ func (x *ResPlayroomRest) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomRest.ProtoReflect.Descriptor instead. func (*ResPlayroomRest) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{613} + return file_Gameapi_proto_rawDescGZIP(), []int{615} } func (x *ResPlayroomRest) GetCode() RES_CODE { @@ -35208,7 +35355,7 @@ type ReqPlayroomDraw struct { func (x *ReqPlayroomDraw) Reset() { *x = ReqPlayroomDraw{} - mi := &file_Gameapi_proto_msgTypes[614] + mi := &file_Gameapi_proto_msgTypes[616] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35220,7 +35367,7 @@ func (x *ReqPlayroomDraw) String() string { func (*ReqPlayroomDraw) ProtoMessage() {} func (x *ReqPlayroomDraw) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[614] + mi := &file_Gameapi_proto_msgTypes[616] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35233,7 +35380,7 @@ func (x *ReqPlayroomDraw) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomDraw.ProtoReflect.Descriptor instead. func (*ReqPlayroomDraw) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{614} + return file_Gameapi_proto_rawDescGZIP(), []int{616} } type ResPlayroomDraw struct { @@ -35248,7 +35395,7 @@ type ResPlayroomDraw struct { func (x *ResPlayroomDraw) Reset() { *x = ResPlayroomDraw{} - mi := &file_Gameapi_proto_msgTypes[615] + mi := &file_Gameapi_proto_msgTypes[617] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35260,7 +35407,7 @@ func (x *ResPlayroomDraw) String() string { func (*ResPlayroomDraw) ProtoMessage() {} func (x *ResPlayroomDraw) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[615] + mi := &file_Gameapi_proto_msgTypes[617] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35273,7 +35420,7 @@ func (x *ResPlayroomDraw) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomDraw.ProtoReflect.Descriptor instead. func (*ResPlayroomDraw) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{615} + return file_Gameapi_proto_rawDescGZIP(), []int{617} } func (x *ResPlayroomDraw) GetCode() RES_CODE { @@ -35307,7 +35454,7 @@ type ReqPlayroomChip struct { func (x *ReqPlayroomChip) Reset() { *x = ReqPlayroomChip{} - mi := &file_Gameapi_proto_msgTypes[616] + mi := &file_Gameapi_proto_msgTypes[618] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35319,7 +35466,7 @@ func (x *ReqPlayroomChip) String() string { func (*ReqPlayroomChip) ProtoMessage() {} func (x *ReqPlayroomChip) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[616] + mi := &file_Gameapi_proto_msgTypes[618] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35332,7 +35479,7 @@ func (x *ReqPlayroomChip) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomChip.ProtoReflect.Descriptor instead. func (*ReqPlayroomChip) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{616} + return file_Gameapi_proto_rawDescGZIP(), []int{618} } func (x *ReqPlayroomChip) GetNum() int32 { @@ -35353,7 +35500,7 @@ type ResPlayroomChip struct { func (x *ResPlayroomChip) Reset() { *x = ResPlayroomChip{} - mi := &file_Gameapi_proto_msgTypes[617] + mi := &file_Gameapi_proto_msgTypes[619] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -35365,7 +35512,7 @@ func (x *ResPlayroomChip) String() string { func (*ResPlayroomChip) ProtoMessage() {} func (x *ResPlayroomChip) ProtoReflect() protoreflect.Message { - mi := &file_Gameapi_proto_msgTypes[617] + mi := &file_Gameapi_proto_msgTypes[619] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -35378,7 +35525,7 @@ func (x *ResPlayroomChip) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomChip.ProtoReflect.Descriptor instead. func (*ResPlayroomChip) Descriptor() ([]byte, []int) { - return file_Gameapi_proto_rawDescGZIP(), []int{617} + return file_Gameapi_proto_rawDescGZIP(), []int{619} } func (x *ResPlayroomChip) GetCode() RES_CODE { @@ -35486,7 +35633,7 @@ var file_Gameapi_proto_rawDesc = []byte{ 0x75, 0x70, 0x49, 0x44, 0x18, 0x16, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x4c, 0x61, 0x73, 0x74, 0x43, 0x68, 0x61, 0x6d, 0x70, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x46, 0x61, 0x63, 0x65, 0x42, 0x6f, 0x6f, 0x6b, 0x49, 0x64, 0x18, 0x17, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x0a, 0x46, 0x61, 0x63, 0x65, 0x42, 0x6f, 0x6f, 0x6b, 0x49, 0x64, 0x22, 0xb7, 0x01, 0x0a, + 0x52, 0x0a, 0x46, 0x61, 0x63, 0x65, 0x42, 0x6f, 0x6f, 0x6b, 0x49, 0x64, 0x22, 0xe5, 0x01, 0x0a, 0x0e, 0x52, 0x65, 0x73, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x65, 0x6e, 0x65, 0x72, 0x67, 0x79, 0x18, @@ -35498,206 +35645,231 @@ var file_Gameapi_proto_rawDesc = []byte{ 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x64, 0x69, 0x61, 0x6d, 0x6f, 0x6e, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x65, 0x78, 0x70, 0x18, 0x07, 0x20, 0x01, 0x28, - 0x05, 0x52, 0x03, 0x65, 0x78, 0x70, 0x22, 0xbb, 0x01, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, - 0x65, 0x42, 0x61, 0x73, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, + 0x05, 0x52, 0x03, 0x65, 0x78, 0x70, 0x12, 0x14, 0x0a, 0x05, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x18, + 0x08, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x16, 0x0a, 0x06, + 0x4c, 0x6f, 0x67, 0x6f, 0x75, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x4c, 0x6f, + 0x67, 0x6f, 0x75, 0x74, 0x22, 0xbb, 0x01, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, + 0x61, 0x73, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x64, + 0x77, 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x64, 0x77, 0x55, 0x69, + 0x6e, 0x12, 0x4f, 0x0a, 0x0b, 0x6d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x74, 0x65, 0x6d, + 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x74, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x61, + 0x6c, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x61, 0x73, 0x65, 0x49, 0x74, 0x65, 0x6d, + 0x49, 0x6e, 0x66, 0x6f, 0x2e, 0x4d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x74, 0x65, 0x6d, + 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0b, 0x6d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x74, + 0x65, 0x6d, 0x1a, 0x3e, 0x0a, 0x10, 0x4d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x74, 0x65, + 0x6d, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, + 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, + 0x38, 0x01, 0x22, 0x47, 0x0a, 0x17, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x52, 0x65, 0x6e, 0x65, + 0x77, 0x42, 0x75, 0x79, 0x45, 0x6e, 0x65, 0x72, 0x67, 0x79, 0x43, 0x6e, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x64, 0x77, - 0x55, 0x69, 0x6e, 0x12, 0x4f, 0x0a, 0x0b, 0x6d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x74, - 0x65, 0x6d, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x74, 0x75, 0x74, 0x6f, 0x72, - 0x69, 0x61, 0x6c, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x61, 0x73, 0x65, 0x49, 0x74, - 0x65, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x2e, 0x4d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x74, - 0x65, 0x6d, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0b, 0x6d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, - 0x49, 0x74, 0x65, 0x6d, 0x1a, 0x3e, 0x0a, 0x10, 0x4d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, - 0x74, 0x65, 0x6d, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, - 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, - 0x3a, 0x02, 0x38, 0x01, 0x22, 0x47, 0x0a, 0x17, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x52, 0x65, - 0x6e, 0x65, 0x77, 0x42, 0x75, 0x79, 0x45, 0x6e, 0x65, 0x72, 0x67, 0x79, 0x43, 0x6e, 0x74, 0x12, - 0x14, 0x0a, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, - 0x64, 0x77, 0x55, 0x69, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x43, 0x75, 0x72, 0x43, 0x6e, 0x74, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x43, 0x75, 0x72, 0x43, 0x6e, 0x74, 0x22, 0x23, 0x0a, - 0x0b, 0x52, 0x65, 0x71, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x41, 0x64, 0x12, 0x14, 0x0a, 0x05, - 0x64, 0x77, 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x64, 0x77, 0x55, - 0x69, 0x6e, 0x22, 0x2d, 0x0a, 0x0b, 0x52, 0x65, 0x73, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x41, - 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x43, 0x6f, 0x64, - 0x65, 0x22, 0x3f, 0x0a, 0x0f, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x41, 0x64, 0x64, 0x45, 0x6e, - 0x65, 0x72, 0x67, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x05, 0x52, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x64, - 0x64, 0x43, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x61, 0x64, 0x64, 0x43, - 0x6e, 0x74, 0x22, 0x25, 0x0a, 0x0d, 0x52, 0x65, 0x71, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x54, - 0x69, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x22, 0x2f, 0x0a, 0x0d, 0x52, 0x65, 0x73, - 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x53, 0x65, - 0x72, 0x76, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, - 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x2f, 0x0a, 0x17, 0x52, 0x65, - 0x71, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, 0x6f, 0x63, + 0x55, 0x69, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x43, 0x75, 0x72, 0x43, 0x6e, 0x74, 0x18, 0x02, 0x20, + 0x01, 0x28, 0x05, 0x52, 0x06, 0x43, 0x75, 0x72, 0x43, 0x6e, 0x74, 0x22, 0x23, 0x0a, 0x0b, 0x52, + 0x65, 0x71, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x41, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x64, 0x77, + 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, + 0x22, 0x2d, 0x0a, 0x0b, 0x52, 0x65, 0x73, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x41, 0x64, 0x12, + 0x1e, 0x0a, 0x0a, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x05, 0x52, 0x0a, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x22, + 0x3f, 0x0a, 0x0f, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x41, 0x64, 0x64, 0x45, 0x6e, 0x65, 0x72, + 0x67, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x05, 0x52, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x64, 0x64, 0x43, + 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x61, 0x64, 0x64, 0x43, 0x6e, 0x74, + 0x22, 0x25, 0x0a, 0x0d, 0x52, 0x65, 0x71, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x54, 0x69, 0x6d, + 0x65, 0x12, 0x14, 0x0a, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x22, 0x2f, 0x0a, 0x0d, 0x52, 0x65, 0x73, 0x53, 0x65, + 0x72, 0x76, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x53, 0x65, 0x72, 0x76, + 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x53, 0x65, + 0x72, 0x76, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x2f, 0x0a, 0x17, 0x52, 0x65, 0x71, 0x50, + 0x6c, 0x61, 0x79, 0x65, 0x72, 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x44, + 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x05, 0x52, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x22, 0xf3, 0x01, 0x0a, 0x17, 0x52, 0x65, + 0x73, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x22, 0xf3, 0x01, 0x0a, 0x17, + 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x12, 0x60, 0x0a, 0x0f, 0x6d, + 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x18, 0x02, + 0x20, 0x03, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x74, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x52, 0x65, 0x73, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, - 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x12, 0x60, 0x0a, - 0x0f, 0x6d, 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, - 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x74, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x61, - 0x6c, 0x2e, 0x52, 0x65, 0x73, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x45, 0x6d, 0x69, 0x74, 0x55, - 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x45, 0x6d, 0x69, 0x74, 0x55, - 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, - 0x6d, 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x12, - 0x1c, 0x0a, 0x09, 0x52, 0x65, 0x6e, 0x65, 0x77, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x09, 0x52, 0x65, 0x6e, 0x65, 0x77, 0x54, 0x69, 0x6d, 0x65, 0x1a, 0x42, 0x0a, - 0x14, 0x4d, 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, - 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, - 0x01, 0x22, 0xf9, 0x01, 0x0a, 0x1a, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x44, 0x61, 0x69, 0x6c, - 0x79, 0x52, 0x65, 0x6e, 0x65, 0x77, 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, - 0x12, 0x14, 0x0a, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, - 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x12, 0x63, 0x0a, 0x0f, 0x6d, 0x45, 0x6d, 0x69, 0x74, 0x55, - 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, - 0x39, 0x2e, 0x74, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x4e, 0x6f, 0x74, 0x69, 0x66, - 0x79, 0x44, 0x61, 0x69, 0x6c, 0x79, 0x52, 0x65, 0x6e, 0x65, 0x77, 0x45, 0x6d, 0x69, 0x74, 0x55, - 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x2e, 0x4d, 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, 0x6f, 0x63, - 0x6b, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x45, 0x6d, 0x69, - 0x74, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1c, 0x0a, 0x09, 0x52, - 0x65, 0x6e, 0x65, 0x77, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, - 0x52, 0x65, 0x6e, 0x65, 0x77, 0x54, 0x69, 0x6d, 0x65, 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x45, 0x6d, - 0x69, 0x74, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, - 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, - 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xdb, 0x01, - 0x0a, 0x1a, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x45, 0x6d, - 0x69, 0x74, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, - 0x64, 0x77, 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x64, 0x77, 0x55, - 0x69, 0x6e, 0x12, 0x63, 0x0a, 0x0f, 0x6d, 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, 0x6f, 0x63, - 0x6b, 0x44, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x74, 0x75, - 0x74, 0x6f, 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x6c, 0x61, - 0x79, 0x65, 0x72, 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, - 0x61, 0x2e, 0x4d, 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, - 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, - 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x45, 0x6d, 0x69, 0x74, + 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, + 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x45, + 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1c, 0x0a, + 0x09, 0x52, 0x65, 0x6e, 0x65, 0x77, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x09, 0x52, 0x65, 0x6e, 0x65, 0x77, 0x54, 0x69, 0x6d, 0x65, 0x1a, 0x42, 0x0a, 0x14, 0x4d, + 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, + 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, + 0xf9, 0x01, 0x0a, 0x1a, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x44, 0x61, 0x69, 0x6c, 0x79, 0x52, + 0x65, 0x6e, 0x65, 0x77, 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x12, 0x14, + 0x0a, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x64, + 0x77, 0x55, 0x69, 0x6e, 0x12, 0x63, 0x0a, 0x0f, 0x6d, 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, + 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e, + 0x74, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x44, + 0x61, 0x69, 0x6c, 0x79, 0x52, 0x65, 0x6e, 0x65, 0x77, 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, + 0x6f, 0x63, 0x6b, 0x2e, 0x4d, 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x44, + 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x45, 0x6d, 0x69, 0x74, 0x55, + 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1c, 0x0a, 0x09, 0x52, 0x65, 0x6e, + 0x65, 0x77, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x52, 0x65, + 0x6e, 0x65, 0x77, 0x54, 0x69, 0x6d, 0x65, 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, - 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x29, 0x0a, 0x11, 0x52, - 0x65, 0x71, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x50, 0x61, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, - 0x12, 0x14, 0x0a, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, - 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x22, 0xb1, 0x01, 0x0a, 0x11, 0x52, 0x65, 0x73, 0x50, 0x6c, - 0x61, 0x79, 0x65, 0x72, 0x50, 0x61, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, - 0x64, 0x77, 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x64, 0x77, 0x55, - 0x69, 0x6e, 0x12, 0x48, 0x0a, 0x09, 0x6d, 0x50, 0x61, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x18, - 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x74, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x61, 0x6c, - 0x2e, 0x52, 0x65, 0x73, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x50, 0x61, 0x63, 0x6b, 0x44, 0x61, - 0x74, 0x61, 0x2e, 0x4d, 0x50, 0x61, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, - 0x79, 0x52, 0x09, 0x6d, 0x50, 0x61, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x1a, 0x3c, 0x0a, 0x0e, - 0x4d, 0x50, 0x61, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, - 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, - 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xb7, 0x01, 0x0a, 0x14, 0x55, - 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x50, 0x61, 0x63, 0x6b, 0x44, - 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x12, 0x4b, 0x0a, 0x09, 0x6d, 0x50, 0x61, - 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x74, - 0x75, 0x74, 0x6f, 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x6c, - 0x61, 0x79, 0x65, 0x72, 0x50, 0x61, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x50, 0x61, - 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x09, 0x6d, 0x50, 0x61, - 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x1a, 0x3c, 0x0a, 0x0e, 0x4d, 0x50, 0x61, 0x63, 0x6b, 0x44, + 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xdb, 0x01, 0x0a, 0x1a, + 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x45, 0x6d, 0x69, 0x74, + 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x64, 0x77, + 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, + 0x12, 0x63, 0x0a, 0x0f, 0x6d, 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x44, + 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x74, 0x75, 0x74, 0x6f, + 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x6c, 0x61, 0x79, 0x65, + 0x72, 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x2e, + 0x4d, 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x45, + 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, 0x6c, 0x6f, 0x63, + 0x6b, 0x44, 0x61, 0x74, 0x61, 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x45, 0x6d, 0x69, 0x74, 0x55, 0x6e, + 0x6c, 0x6f, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, + 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, + 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, + 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x29, 0x0a, 0x11, 0x52, 0x65, 0x71, + 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x50, 0x61, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, + 0x0a, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x64, + 0x77, 0x55, 0x69, 0x6e, 0x22, 0xb1, 0x01, 0x0a, 0x11, 0x52, 0x65, 0x73, 0x50, 0x6c, 0x61, 0x79, + 0x65, 0x72, 0x50, 0x61, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x64, 0x77, + 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, + 0x12, 0x48, 0x0a, 0x09, 0x6d, 0x50, 0x61, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, + 0x03, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x74, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x52, + 0x65, 0x73, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x50, 0x61, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, + 0x2e, 0x4d, 0x50, 0x61, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, + 0x09, 0x6d, 0x50, 0x61, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x1a, 0x3c, 0x0a, 0x0e, 0x4d, 0x50, + 0x61, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, + 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, + 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, + 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xb7, 0x01, 0x0a, 0x14, 0x55, 0x70, 0x64, + 0x61, 0x74, 0x65, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x50, 0x61, 0x63, 0x6b, 0x44, 0x61, 0x74, + 0x61, 0x12, 0x14, 0x0a, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x12, 0x4b, 0x0a, 0x09, 0x6d, 0x50, 0x61, 0x63, 0x6b, + 0x44, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x74, 0x75, 0x74, + 0x6f, 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x6c, 0x61, 0x79, + 0x65, 0x72, 0x50, 0x61, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x50, 0x61, 0x63, 0x6b, + 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x09, 0x6d, 0x50, 0x61, 0x63, 0x6b, + 0x44, 0x61, 0x74, 0x61, 0x1a, 0x3c, 0x0a, 0x0e, 0x4d, 0x50, 0x61, 0x63, 0x6b, 0x44, 0x61, 0x74, + 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, + 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, + 0x38, 0x01, 0x22, 0x2a, 0x0a, 0x12, 0x52, 0x65, 0x71, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x43, + 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x64, 0x77, 0x55, 0x69, + 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x22, 0xf3, + 0x01, 0x0a, 0x12, 0x52, 0x65, 0x73, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x43, 0x68, 0x65, 0x73, + 0x73, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x12, 0x4c, 0x0a, 0x0a, 0x6d, + 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, + 0x2c, 0x2e, 0x74, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x52, 0x65, 0x73, 0x50, 0x6c, + 0x61, 0x79, 0x65, 0x72, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x43, + 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0a, 0x6d, + 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1c, 0x0a, 0x09, 0x43, 0x68, 0x65, + 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x05, 0x52, 0x09, 0x43, 0x68, + 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x43, 0x68, 0x65, 0x73, 0x73, + 0x42, 0x75, 0x66, 0x66, 0x18, 0x04, 0x20, 0x03, 0x28, 0x05, 0x52, 0x09, 0x43, 0x68, 0x65, 0x73, + 0x73, 0x42, 0x75, 0x66, 0x66, 0x1a, 0x3d, 0x0a, 0x0f, 0x4d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, - 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, - 0x3a, 0x02, 0x38, 0x01, 0x22, 0x2a, 0x0a, 0x12, 0x52, 0x65, 0x71, 0x50, 0x6c, 0x61, 0x79, 0x65, + 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, + 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, + 0x3a, 0x02, 0x38, 0x01, 0x22, 0xb6, 0x01, 0x0a, 0x12, 0x52, 0x65, 0x73, 0x50, 0x6c, 0x61, 0x79, + 0x65, 0x72, 0x43, 0x68, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x43, + 0x68, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x05, 0x52, 0x09, + 0x43, 0x68, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x43, 0x68, 0x65, + 0x73, 0x73, 0x42, 0x75, 0x66, 0x66, 0x18, 0x02, 0x20, 0x03, 0x28, 0x05, 0x52, 0x09, 0x43, 0x68, + 0x65, 0x73, 0x73, 0x42, 0x75, 0x66, 0x66, 0x12, 0x2e, 0x0a, 0x08, 0x43, 0x68, 0x65, 0x73, 0x73, + 0x42, 0x61, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x74, 0x75, 0x74, 0x6f, + 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x43, 0x68, 0x65, 0x73, 0x73, 0x42, 0x61, 0x67, 0x52, 0x08, 0x43, + 0x68, 0x65, 0x73, 0x73, 0x42, 0x61, 0x67, 0x12, 0x1e, 0x0a, 0x0a, 0x52, 0x65, 0x74, 0x69, 0x72, + 0x65, 0x45, 0x6d, 0x69, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x52, 0x65, 0x74, + 0x69, 0x72, 0x65, 0x45, 0x6d, 0x69, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x48, 0x6f, 0x6e, 0x6f, 0x72, + 0x18, 0x05, 0x20, 0x03, 0x28, 0x05, 0x52, 0x05, 0x48, 0x6f, 0x6e, 0x6f, 0x72, 0x22, 0x90, 0x01, + 0x0a, 0x0b, 0x43, 0x68, 0x65, 0x73, 0x73, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x12, 0x29, 0x0a, + 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x15, 0x2e, 0x74, 0x75, + 0x74, 0x6f, 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x48, 0x41, 0x4e, 0x44, 0x4c, 0x45, 0x5f, 0x54, 0x59, + 0x50, 0x45, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x45, 0x6d, 0x69, 0x74, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x45, 0x6d, 0x69, 0x74, 0x12, 0x18, 0x0a, 0x07, + 0x43, 0x68, 0x65, 0x73, 0x73, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x43, + 0x68, 0x65, 0x73, 0x73, 0x49, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, + 0x28, 0x05, 0x52, 0x02, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x41, 0x63, 0x74, 0x54, 0x79, 0x70, + 0x65, 0x18, 0x05, 0x20, 0x03, 0x28, 0x05, 0x52, 0x07, 0x41, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, + 0x22, 0xf8, 0x01, 0x0a, 0x15, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, - 0x22, 0xf3, 0x01, 0x0a, 0x12, 0x52, 0x65, 0x73, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x43, 0x68, - 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x64, 0x77, 0x55, 0x69, 0x6e, 0x12, 0x4c, 0x0a, - 0x0a, 0x6d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x03, 0x28, - 0x0b, 0x32, 0x2c, 0x2e, 0x74, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x52, 0x65, 0x73, - 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x2e, - 0x4d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, - 0x0a, 0x6d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1c, 0x0a, 0x09, 0x43, - 0x68, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x05, 0x52, 0x09, - 0x43, 0x68, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x43, 0x68, 0x65, - 0x73, 0x73, 0x42, 0x75, 0x66, 0x66, 0x18, 0x04, 0x20, 0x03, 0x28, 0x05, 0x52, 0x09, 0x43, 0x68, - 0x65, 0x73, 0x73, 0x42, 0x75, 0x66, 0x66, 0x1a, 0x3d, 0x0a, 0x0f, 0x4d, 0x43, 0x68, 0x65, 0x73, - 0x73, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, - 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, - 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, - 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xb6, 0x01, 0x0a, 0x12, 0x52, 0x65, 0x73, 0x50, 0x6c, - 0x61, 0x79, 0x65, 0x72, 0x43, 0x68, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1c, 0x0a, - 0x09, 0x43, 0x68, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x05, - 0x52, 0x09, 0x43, 0x68, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x43, - 0x68, 0x65, 0x73, 0x73, 0x42, 0x75, 0x66, 0x66, 0x18, 0x02, 0x20, 0x03, 0x28, 0x05, 0x52, 0x09, - 0x43, 0x68, 0x65, 0x73, 0x73, 0x42, 0x75, 0x66, 0x66, 0x12, 0x2e, 0x0a, 0x08, 0x43, 0x68, 0x65, - 0x73, 0x73, 0x42, 0x61, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x74, 0x75, - 0x74, 0x6f, 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x43, 0x68, 0x65, 0x73, 0x73, 0x42, 0x61, 0x67, 0x52, - 0x08, 0x43, 0x68, 0x65, 0x73, 0x73, 0x42, 0x61, 0x67, 0x12, 0x1e, 0x0a, 0x0a, 0x52, 0x65, 0x74, - 0x69, 0x72, 0x65, 0x45, 0x6d, 0x69, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x52, - 0x65, 0x74, 0x69, 0x72, 0x65, 0x45, 0x6d, 0x69, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x48, 0x6f, 0x6e, - 0x6f, 0x72, 0x18, 0x05, 0x20, 0x03, 0x28, 0x05, 0x52, 0x05, 0x48, 0x6f, 0x6e, 0x6f, 0x72, 0x22, - 0x90, 0x01, 0x0a, 0x0b, 0x43, 0x68, 0x65, 0x73, 0x73, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x12, - 0x29, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x15, 0x2e, - 0x74, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x48, 0x41, 0x4e, 0x44, 0x4c, 0x45, 0x5f, - 0x54, 0x59, 0x50, 0x45, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x45, 0x6d, - 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x45, 0x6d, 0x69, 0x74, 0x12, 0x18, - 0x0a, 0x07, 0x43, 0x68, 0x65, 0x73, 0x73, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, - 0x07, 0x43, 0x68, 0x65, 0x73, 0x73, 0x49, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x49, 0x64, 0x18, 0x04, - 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x41, 0x63, 0x74, 0x54, - 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x03, 0x28, 0x05, 0x52, 0x07, 0x41, 0x63, 0x74, 0x54, 0x79, - 0x70, 0x65, 0x22, 0xf8, 0x01, 0x0a, 0x15, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x6c, 0x61, - 0x79, 0x65, 0x72, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, - 0x64, 0x77, 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x64, 0x77, 0x55, - 0x69, 0x6e, 0x12, 0x4f, 0x0a, 0x0a, 0x6d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, - 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x74, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x61, - 0x6c, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x43, 0x68, - 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, - 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0a, 0x6d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, - 0x61, 0x74, 0x61, 0x12, 0x39, 0x0a, 0x0c, 0x6d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x48, 0x61, 0x6e, - 0x64, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x75, 0x74, 0x6f, - 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x43, 0x68, 0x65, 0x73, 0x73, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, - 0x52, 0x0c, 0x6d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x1a, 0x3d, - 0x0a, 0x0f, 0x4d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, - 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, - 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x54, 0x0a, - 0x18, 0x52, 0x65, 0x73, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, - 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x12, 0x26, 0x0a, 0x04, 0x63, 0x6f, 0x64, - 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x12, 0x2e, 0x74, 0x75, 0x74, 0x6f, 0x72, 0x69, - 0x61, 0x6c, 0x2e, 0x52, 0x45, 0x53, 0x5f, 0x43, 0x4f, 0x44, 0x45, 0x52, 0x04, 0x63, 0x6f, 0x64, - 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, - 0x6d, 0x73, 0x67, 0x22, 0xbd, 0x01, 0x0a, 0x13, 0x52, 0x65, 0x71, 0x47, 0x65, 0x74, 0x43, 0x68, - 0x65, 0x73, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x42, 0x75, 0x66, 0x66, 0x12, 0x18, 0x0a, 0x07, 0x43, - 0x68, 0x65, 0x73, 0x73, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x43, 0x68, - 0x65, 0x73, 0x73, 0x49, 0x64, 0x12, 0x4d, 0x0a, 0x0a, 0x6d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, - 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x74, 0x75, 0x74, 0x6f, - 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x52, 0x65, 0x71, 0x47, 0x65, 0x74, 0x43, 0x68, 0x65, 0x73, 0x73, - 0x46, 0x72, 0x6f, 0x6d, 0x42, 0x75, 0x66, 0x66, 0x2e, 0x4d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, - 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0a, 0x6d, 0x43, 0x68, 0x65, 0x73, 0x73, - 0x44, 0x61, 0x74, 0x61, 0x1a, 0x3d, 0x0a, 0x0f, 0x4d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, - 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, - 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, - 0x02, 0x38, 0x01, 0x22, 0x4f, 0x0a, 0x13, 0x52, 0x65, 0x73, 0x47, 0x65, 0x74, 0x43, 0x68, 0x65, - 0x73, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x42, 0x75, 0x66, 0x66, 0x12, 0x26, 0x0a, 0x04, 0x63, 0x6f, - 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x12, 0x2e, 0x74, 0x75, 0x74, 0x6f, 0x72, - 0x69, 0x61, 0x6c, 0x2e, 0x52, 0x45, 0x53, 0x5f, 0x43, 0x4f, 0x44, 0x45, 0x52, 0x04, 0x63, 0x6f, - 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x03, 0x6d, 0x73, 0x67, 0x22, 0xff, 0x01, 0x0a, 0x0a, 0x52, 0x65, 0x71, 0x43, 0x68, 0x65, 0x73, - 0x73, 0x45, 0x78, 0x12, 0x1e, 0x0a, 0x0a, 0x4f, 0x6c, 0x64, 0x43, 0x68, 0x65, 0x73, 0x73, 0x49, + 0x12, 0x4f, 0x0a, 0x0a, 0x6d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x18, 0x02, + 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x74, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x61, 0x6c, 0x2e, + 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x43, 0x68, 0x65, 0x73, + 0x73, 0x44, 0x61, 0x74, 0x61, 0x2e, 0x4d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, + 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0a, 0x6d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, + 0x61, 0x12, 0x39, 0x0a, 0x0c, 0x6d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x48, 0x61, 0x6e, 0x64, 0x6c, + 0x65, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x74, 0x75, 0x74, 0x6f, 0x72, 0x69, + 0x61, 0x6c, 0x2e, 0x43, 0x68, 0x65, 0x73, 0x73, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x52, 0x0c, + 0x6d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x1a, 0x3d, 0x0a, 0x0f, + 0x4d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, + 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, + 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x54, 0x0a, 0x18, 0x52, + 0x65, 0x73, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x43, 0x68, + 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x12, 0x26, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x12, 0x2e, 0x74, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x61, 0x6c, + 0x2e, 0x52, 0x45, 0x53, 0x5f, 0x43, 0x4f, 0x44, 0x45, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, + 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, + 0x67, 0x22, 0xbd, 0x01, 0x0a, 0x13, 0x52, 0x65, 0x71, 0x47, 0x65, 0x74, 0x43, 0x68, 0x65, 0x73, + 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x42, 0x75, 0x66, 0x66, 0x12, 0x18, 0x0a, 0x07, 0x43, 0x68, 0x65, + 0x73, 0x73, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x43, 0x68, 0x65, 0x73, + 0x73, 0x49, 0x64, 0x12, 0x4d, 0x0a, 0x0a, 0x6d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, + 0x61, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x74, 0x75, 0x74, 0x6f, 0x72, 0x69, + 0x61, 0x6c, 0x2e, 0x52, 0x65, 0x71, 0x47, 0x65, 0x74, 0x43, 0x68, 0x65, 0x73, 0x73, 0x46, 0x72, + 0x6f, 0x6d, 0x42, 0x75, 0x66, 0x66, 0x2e, 0x4d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, + 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0a, 0x6d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, + 0x74, 0x61, 0x1a, 0x3d, 0x0a, 0x0f, 0x4d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, + 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, + 0x01, 0x22, 0x4f, 0x0a, 0x13, 0x52, 0x65, 0x73, 0x47, 0x65, 0x74, 0x43, 0x68, 0x65, 0x73, 0x73, + 0x46, 0x72, 0x6f, 0x6d, 0x42, 0x75, 0x66, 0x66, 0x12, 0x26, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x12, 0x2e, 0x74, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x61, + 0x6c, 0x2e, 0x52, 0x45, 0x53, 0x5f, 0x43, 0x4f, 0x44, 0x45, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, + 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, + 0x73, 0x67, 0x22, 0xff, 0x01, 0x0a, 0x0a, 0x52, 0x65, 0x71, 0x43, 0x68, 0x65, 0x73, 0x73, 0x45, + 0x78, 0x12, 0x1e, 0x0a, 0x0a, 0x4f, 0x6c, 0x64, 0x43, 0x68, 0x65, 0x73, 0x73, 0x49, 0x64, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x4f, 0x6c, 0x64, 0x43, 0x68, 0x65, 0x73, 0x73, 0x49, + 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x4e, 0x65, 0x77, 0x43, 0x68, 0x65, 0x73, 0x73, 0x49, 0x64, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x4e, 0x65, 0x77, 0x43, 0x68, 0x65, 0x73, 0x73, 0x49, + 0x64, 0x12, 0x18, 0x0a, 0x07, 0x43, 0x6f, 0x73, 0x74, 0x44, 0x69, 0x61, 0x18, 0x03, 0x20, 0x01, + 0x28, 0x05, 0x52, 0x07, 0x43, 0x6f, 0x73, 0x74, 0x44, 0x69, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x54, + 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x54, 0x79, 0x70, 0x65, 0x12, + 0x44, 0x0a, 0x0a, 0x6d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x18, 0x05, 0x20, + 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x74, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x52, + 0x65, 0x71, 0x43, 0x68, 0x65, 0x73, 0x73, 0x45, 0x78, 0x2e, 0x4d, 0x43, 0x68, 0x65, 0x73, 0x73, + 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0a, 0x6d, 0x43, 0x68, 0x65, 0x73, + 0x73, 0x44, 0x61, 0x74, 0x61, 0x1a, 0x3d, 0x0a, 0x0f, 0x4d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, + 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, + 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, + 0x3a, 0x02, 0x38, 0x01, 0x22, 0x46, 0x0a, 0x0a, 0x52, 0x65, 0x73, 0x43, 0x68, 0x65, 0x73, 0x73, + 0x45, 0x78, 0x12, 0x26, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, + 0x32, 0x12, 0x2e, 0x74, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x52, 0x45, 0x53, 0x5f, + 0x43, 0x4f, 0x44, 0x45, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, + 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x22, 0x8f, 0x02, 0x0a, + 0x12, 0x52, 0x65, 0x71, 0x50, 0x6c, 0x61, 0x79, 0x72, 0x6f, 0x6f, 0x6d, 0x4f, 0x75, 0x74, 0x6c, + 0x69, 0x6e, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x4f, 0x6c, 0x64, 0x43, 0x68, 0x65, 0x73, 0x73, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x4f, 0x6c, 0x64, 0x43, 0x68, 0x65, 0x73, 0x73, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x4e, 0x65, 0x77, 0x43, 0x68, 0x65, 0x73, 0x73, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x4e, 0x65, 0x77, 0x43, 0x68, 0x65, 0x73, 0x73, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x43, 0x6f, 0x73, 0x74, 0x44, 0x69, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x43, 0x6f, 0x73, 0x74, 0x44, 0x69, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x54, 0x79, 0x70, - 0x65, 0x12, 0x44, 0x0a, 0x0a, 0x6d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x18, - 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x74, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x61, 0x6c, - 0x2e, 0x52, 0x65, 0x71, 0x43, 0x68, 0x65, 0x73, 0x73, 0x45, 0x78, 0x2e, 0x4d, 0x43, 0x68, 0x65, - 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0a, 0x6d, 0x43, 0x68, - 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x1a, 0x3d, 0x0a, 0x0f, 0x4d, 0x43, 0x68, 0x65, 0x73, - 0x73, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, - 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, - 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, - 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x46, 0x0a, 0x0a, 0x52, 0x65, 0x73, 0x43, 0x68, 0x65, - 0x73, 0x73, 0x45, 0x78, 0x12, 0x26, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, + 0x65, 0x12, 0x4c, 0x0a, 0x0a, 0x6d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x18, + 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x74, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x61, 0x6c, + 0x2e, 0x52, 0x65, 0x71, 0x50, 0x6c, 0x61, 0x79, 0x72, 0x6f, 0x6f, 0x6d, 0x4f, 0x75, 0x74, 0x6c, + 0x69, 0x6e, 0x65, 0x2e, 0x4d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, + 0x74, 0x72, 0x79, 0x52, 0x0a, 0x6d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x1a, + 0x3d, 0x0a, 0x0f, 0x4d, 0x43, 0x68, 0x65, 0x73, 0x73, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, + 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, + 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x4e, + 0x0a, 0x12, 0x52, 0x65, 0x73, 0x50, 0x6c, 0x61, 0x79, 0x72, 0x6f, 0x6f, 0x6d, 0x4f, 0x75, 0x74, + 0x6c, 0x69, 0x6e, 0x65, 0x12, 0x26, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x12, 0x2e, 0x74, 0x75, 0x74, 0x6f, 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x52, 0x45, 0x53, 0x5f, 0x43, 0x4f, 0x44, 0x45, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x22, 0x8e, @@ -39646,7 +39818,7 @@ func file_Gameapi_proto_rawDescGZIP() []byte { } var file_Gameapi_proto_enumTypes = make([]protoimpl.EnumInfo, 4) -var file_Gameapi_proto_msgTypes = make([]protoimpl.MessageInfo, 701) +var file_Gameapi_proto_msgTypes = make([]protoimpl.MessageInfo, 704) var file_Gameapi_proto_goTypes = []any{ (HANDLE_TYPE)(0), // 0: tutorial.HANDLE_TYPE (RES_CODE)(0), // 1: tutorial.RES_CODE @@ -39685,961 +39857,966 @@ var file_Gameapi_proto_goTypes = []any{ (*ResGetChessFromBuff)(nil), // 34: tutorial.ResGetChessFromBuff (*ReqChessEx)(nil), // 35: tutorial.ReqChessEx (*ResChessEx)(nil), // 36: tutorial.ResChessEx - (*ChessBag)(nil), // 37: tutorial.ChessBag - (*ChessBagGrid)(nil), // 38: tutorial.ChessBagGrid - (*ReqPutChessInBag)(nil), // 39: tutorial.ReqPutChessInBag - (*ResPutChessInBag)(nil), // 40: tutorial.ResPutChessInBag - (*ReqTakeChessOutBag)(nil), // 41: tutorial.ReqTakeChessOutBag - (*ResTakeChessOutBag)(nil), // 42: tutorial.ResTakeChessOutBag - (*ReqBuyChessBagGrid)(nil), // 43: tutorial.ReqBuyChessBagGrid - (*ResBuyChessBagGrid)(nil), // 44: tutorial.ResBuyChessBagGrid - (*ReqPlayerGiftData)(nil), // 45: tutorial.ReqPlayerGiftData - (*ResPlayerGiftData)(nil), // 46: tutorial.ResPlayerGiftData - (*UpdatePlayerGiftData)(nil), // 47: tutorial.UpdatePlayerGiftData - (*ReqAddGift)(nil), // 48: tutorial.ReqAddGift - (*ResAddGift)(nil), // 49: tutorial.ResAddGift - (*ReqUseGift)(nil), // 50: tutorial.ReqUseGift - (*ReqPlayerOrderData)(nil), // 51: tutorial.ReqPlayerOrderData - (*ResPlayerOrderData)(nil), // 52: tutorial.ResPlayerOrderData - (*UpdatePlayerOrderData)(nil), // 53: tutorial.UpdatePlayerOrderData - (*NotifyDailyOrderRenew)(nil), // 54: tutorial.NotifyDailyOrderRenew - (*ReqUnlockingChestID)(nil), // 55: tutorial.ReqUnlockingChestID - (*ResUnlockingChestID)(nil), // 56: tutorial.ResUnlockingChestID - (*NotifyInitUnlockingChestID)(nil), // 57: tutorial.NotifyInitUnlockingChestID - (*NotifyUnlockingChestData)(nil), // 58: tutorial.NotifyUnlockingChestData - (*ReqChestUnlockCD)(nil), // 59: tutorial.ReqChestUnlockCD - (*ResChestUnlockCD)(nil), // 60: tutorial.ResChestUnlockCD - (*ReqChessColorData)(nil), // 61: tutorial.ReqChessColorData - (*ResChessColorData)(nil), // 62: tutorial.ResChessColorData - (*UpdateChessColorData)(nil), // 63: tutorial.UpdateChessColorData - (*ReqEmitMergeMap)(nil), // 64: tutorial.ReqEmitMergeMap - (*ResEmitMergeMap)(nil), // 65: tutorial.ResEmitMergeMap - (*UpdateEmitMergeMap)(nil), // 66: tutorial.UpdateEmitMergeMap - (*ReqEmitCountMap)(nil), // 67: tutorial.ReqEmitCountMap - (*ResEmitCountMap)(nil), // 68: tutorial.ResEmitCountMap - (*UpdateEmitCountMap)(nil), // 69: tutorial.UpdateEmitCountMap - (*ReqEmitCDStartData)(nil), // 70: tutorial.ReqEmitCDStartData - (*ResEmitCDStartData)(nil), // 71: tutorial.ResEmitCDStartData - (*NotifyInitEmitCDTimeData)(nil), // 72: tutorial.NotifyInitEmitCDTimeData - (*NotifyEmitCDTimeEndData)(nil), // 73: tutorial.NotifyEmitCDTimeEndData - (*ReqEmitSubCD)(nil), // 74: tutorial.ReqEmitSubCD - (*ReqDecorateData)(nil), // 75: tutorial.ReqDecorateData - (*ResDecorateData)(nil), // 76: tutorial.ResDecorateData - (*UpdateDecorateData)(nil), // 77: tutorial.UpdateDecorateData - (*ReqShopData)(nil), // 78: tutorial.ReqShopData - (*ResShopData)(nil), // 79: tutorial.ResShopData - (*NotifyShopStatusChange)(nil), // 80: tutorial.NotifyShopStatusChange - (*ReqShopBuy)(nil), // 81: tutorial.ReqShopBuy - (*ResShopBuy)(nil), // 82: tutorial.ResShopBuy - (*ReqRenewItemBuyCnt)(nil), // 83: tutorial.ReqRenewItemBuyCnt - (*ResRenewItemBuyCnt)(nil), // 84: tutorial.ResRenewItemBuyCnt - (*ReqPlayerAdPack)(nil), // 85: tutorial.ReqPlayerAdPack - (*ResPlayerAdPack)(nil), // 86: tutorial.ResPlayerAdPack - (*ReqWatchAd)(nil), // 87: tutorial.ReqWatchAd - (*ResWatchAd)(nil), // 88: tutorial.ResWatchAd - (*BriefEmailStruct)(nil), // 89: tutorial.BriefEmailStruct - (*ReqBriefEmailData)(nil), // 90: tutorial.ReqBriefEmailData - (*ResBriefEmailData)(nil), // 91: tutorial.ResBriefEmailData - (*NotifyNewBriefEmailData)(nil), // 92: tutorial.NotifyNewBriefEmailData - (*ReqDetailEmailData)(nil), // 93: tutorial.ReqDetailEmailData - (*ResDetailEmailData)(nil), // 94: tutorial.ResDetailEmailData - (*ReqGetEmailReward)(nil), // 95: tutorial.ReqGetEmailReward - (*ResGetEmailReward)(nil), // 96: tutorial.ResGetEmailReward - (*ReqDeleteEmail)(nil), // 97: tutorial.ReqDeleteEmail - (*ResDeleteEmail)(nil), // 98: tutorial.ResDeleteEmail - (*LimitedTimeActiveStruct)(nil), // 99: tutorial.LimitedTimeActiveStruct - (*LimitedTimeEndStruct)(nil), // 100: tutorial.LimitedTimeEndStruct - (*NotifyLimitedTimeActiveData)(nil), // 101: tutorial.NotifyLimitedTimeActiveData - (*NotifyLimitedTimeActiveEnd)(nil), // 102: tutorial.NotifyLimitedTimeActiveEnd - (*ReqLimitPassportDetail)(nil), // 103: tutorial.ReqLimitPassportDetail - (*ResLimitPassportDetail)(nil), // 104: tutorial.ResLimitPassportDetail - (*ReqActiveAddStar)(nil), // 105: tutorial.ReqActiveAddStar - (*ResActiveAddStar)(nil), // 106: tutorial.ResActiveAddStar - (*ReqPayPassport)(nil), // 107: tutorial.ReqPayPassport - (*ResPayPassport)(nil), // 108: tutorial.ResPayPassport - (*ReqGetLimitPassportReward)(nil), // 109: tutorial.ReqGetLimitPassportReward - (*ResGetLimitPassportReward)(nil), // 110: tutorial.ResGetLimitPassportReward - (*ReqOpenNewPig)(nil), // 111: tutorial.ReqOpenNewPig - (*ResOpenNewPig)(nil), // 112: tutorial.ResOpenNewPig - (*ReqPigDetailInfo)(nil), // 113: tutorial.ReqPigDetailInfo - (*ResPigDetailInfo)(nil), // 114: tutorial.ResPigDetailInfo - (*UpdateFinishOrderDiamond)(nil), // 115: tutorial.UpdateFinishOrderDiamond - (*ReqGetPigReward)(nil), // 116: tutorial.ReqGetPigReward - (*ResGetPigReward)(nil), // 117: tutorial.ResGetPigReward - (*ReqDropPigReward)(nil), // 118: tutorial.ReqDropPigReward - (*ResDropPigReward)(nil), // 119: tutorial.ResDropPigReward - (*ReqPromotionDetail)(nil), // 120: tutorial.ReqPromotionDetail - (*ResPromotionDetail)(nil), // 121: tutorial.ResPromotionDetail - (*ReqBuyLimitPromotionReward)(nil), // 122: tutorial.ReqBuyLimitPromotionReward - (*ResBuyLimitPromotionReward)(nil), // 123: tutorial.ResBuyLimitPromotionReward - (*ReqInfinitePackDetail)(nil), // 124: tutorial.ReqInfinitePackDetail - (*ResInfinitePackDetail)(nil), // 125: tutorial.ResInfinitePackDetail - (*ReqBuyInfinitePack)(nil), // 126: tutorial.ReqBuyInfinitePack - (*ResBuyInfinitePack)(nil), // 127: tutorial.ResBuyInfinitePack - (*NotifyRefreshInfinitePack)(nil), // 128: tutorial.NotifyRefreshInfinitePack - (*Req7DayLoginDetail)(nil), // 129: tutorial.Req7DayLoginDetail - (*Res7DayLoginDetail)(nil), // 130: tutorial.Res7DayLoginDetail - (*ReqGet7DayLoginPack)(nil), // 131: tutorial.ReqGet7DayLoginPack - (*ResGet7DayLoginPack)(nil), // 132: tutorial.ResGet7DayLoginPack - (*NotifyDailyRenew7Day)(nil), // 133: tutorial.NotifyDailyRenew7Day - (*ReqOfflineReconnect)(nil), // 134: tutorial.ReqOfflineReconnect - (*ResOfflineReconnect)(nil), // 135: tutorial.ResOfflineReconnect - (*ReqServerVersion)(nil), // 136: tutorial.ReqServerVersion - (*ResServerVersion)(nil), // 137: tutorial.ResServerVersion - (*ReqLevelUpPackInfo)(nil), // 138: tutorial.ReqLevelUpPackInfo - (*ResLevelUpPackInfo)(nil), // 139: tutorial.ResLevelUpPackInfo - (*ReqBuyLevelUpPack)(nil), // 140: tutorial.ReqBuyLevelUpPack - (*ResBuyLevelUpPack)(nil), // 141: tutorial.ResBuyLevelUpPack - (*ReqGrowthFundInfo)(nil), // 142: tutorial.ReqGrowthFundInfo - (*ResGrowthFundInfo)(nil), // 143: tutorial.ResGrowthFundInfo - (*ReqBuyGrowthFund)(nil), // 144: tutorial.ReqBuyGrowthFund - (*ResBuyGrowthFund)(nil), // 145: tutorial.ResBuyGrowthFund - (*ReqGetGrowthFundWard)(nil), // 146: tutorial.ReqGetGrowthFundWard - (*ResGetGrowthFundWard)(nil), // 147: tutorial.ResGetGrowthFundWard - (*ReqSupremeGiftInfo)(nil), // 148: tutorial.ReqSupremeGiftInfo - (*ResSupremeGiftInfo)(nil), // 149: tutorial.ResSupremeGiftInfo - (*ReqBuySupremeGift)(nil), // 150: tutorial.ReqBuySupremeGift - (*ResBuySupremeGift)(nil), // 151: tutorial.ResBuySupremeGift - (*NotifySupremeGiftTimeOver)(nil), // 152: tutorial.NotifySupremeGiftTimeOver - (*ReqIllustratedInfo)(nil), // 153: tutorial.ReqIllustratedInfo - (*SingleIllustratedItem)(nil), // 154: tutorial.SingleIllustratedItem - (*CategoryIllustratedData)(nil), // 155: tutorial.CategoryIllustratedData - (*ResIllustratedInfo)(nil), // 156: tutorial.ResIllustratedInfo - (*UpdateIllustrateItem)(nil), // 157: tutorial.UpdateIllustrateItem - (*ReqGetIllustrateItemReward)(nil), // 158: tutorial.ReqGetIllustrateItemReward - (*ResGetIllustrateItemReward)(nil), // 159: tutorial.ResGetIllustrateItemReward - (*ReqCardCollectDetail)(nil), // 160: tutorial.ReqCardCollectDetail - (*ResCardCollectDetail)(nil), // 161: tutorial.ResCardCollectDetail - (*ReqGetCardAlbumReward)(nil), // 162: tutorial.ReqGetCardAlbumReward - (*ResGetCardAlbumReward)(nil), // 163: tutorial.ResGetCardAlbumReward - (*ReqGetAllCardReward)(nil), // 164: tutorial.ReqGetAllCardReward - (*ResGetAllCardReward)(nil), // 165: tutorial.ResGetAllCardReward - (*ReqAddCard)(nil), // 166: tutorial.ReqAddCard - (*ResAddCard)(nil), // 167: tutorial.ResAddCard - (*ReqUnpackCard)(nil), // 168: tutorial.ReqUnpackCard - (*ResUnpackCard)(nil), // 169: tutorial.ResUnpackCard - (*ReqAddMasterCard)(nil), // 170: tutorial.ReqAddMasterCard - (*ResAddMasterCard)(nil), // 171: tutorial.ResAddMasterCard - (*ReqUseMasterCard)(nil), // 172: tutorial.ReqUseMasterCard - (*ResUseMasterCard)(nil), // 173: tutorial.ResUseMasterCard - (*ReqUpdateStickerCount)(nil), // 174: tutorial.ReqUpdateStickerCount - (*ResUpdateStickerCount)(nil), // 175: tutorial.ResUpdateStickerCount - (*ReqBuyStickerItem)(nil), // 176: tutorial.ReqBuyStickerItem - (*ResBuyStickerItem)(nil), // 177: tutorial.ResBuyStickerItem - (*Notify7DayLoginData)(nil), // 178: tutorial.Notify7DayLoginData - (*Req7DaySignal)(nil), // 179: tutorial.Req7DaySignal - (*Res7DaySignal)(nil), // 180: tutorial.Res7DaySignal - (*Notify7DayCallbackData)(nil), // 181: tutorial.Notify7DayCallbackData - (*Notify7DayCallbackEnd)(nil), // 182: tutorial.Notify7DayCallbackEnd - (*Req7DayCallbackSignal)(nil), // 183: tutorial.Req7DayCallbackSignal - (*Res7DayCallbackSignal)(nil), // 184: tutorial.Res7DayCallbackSignal - (*ReqKeyValueData)(nil), // 185: tutorial.ReqKeyValueData - (*ResKeyValueData)(nil), // 186: tutorial.ResKeyValueData - (*UpdateKeyValueData)(nil), // 187: tutorial.UpdateKeyValueData - (*ReqDailyTaskData)(nil), // 188: tutorial.ReqDailyTaskData - (*ResDailyTaskData)(nil), // 189: tutorial.ResDailyTaskData - (*NotifyRenewDailyTask)(nil), // 190: tutorial.NotifyRenewDailyTask - (*UpdateDailyTaskData)(nil), // 191: tutorial.UpdateDailyTaskData - (*NotifyRenewWeekyActive)(nil), // 192: tutorial.NotifyRenewWeekyActive - (*RenewDailyTaskData)(nil), // 193: tutorial.RenewDailyTaskData - (*RenewWeekyActiveData)(nil), // 194: tutorial.RenewWeekyActiveData - (*ReqMileStoneData)(nil), // 195: tutorial.ReqMileStoneData - (*ResMileStoneData)(nil), // 196: tutorial.ResMileStoneData - (*NotifyRenewMileStone)(nil), // 197: tutorial.NotifyRenewMileStone - (*UpdateMileStoneData)(nil), // 198: tutorial.UpdateMileStoneData - (*RenewMileStoneData)(nil), // 199: tutorial.RenewMileStoneData - (*ReqPlayerChampshipData)(nil), // 200: tutorial.ReqPlayerChampshipData - (*ResPlayerChampshipData)(nil), // 201: tutorial.ResPlayerChampshipData - (*ReqChampshipData)(nil), // 202: tutorial.ReqChampshipData - (*ChampshipsPlayerInfo)(nil), // 203: tutorial.ChampshipsPlayerInfo - (*ResChampshipData)(nil), // 204: tutorial.ResChampshipData - (*NotifyNewChampshipRank)(nil), // 205: tutorial.NotifyNewChampshipRank - (*NotifyUpdateChampshipRank)(nil), // 206: tutorial.NotifyUpdateChampshipRank - (*NotifyChampshipOpen)(nil), // 207: tutorial.NotifyChampshipOpen - (*NotifyChampshipClose)(nil), // 208: tutorial.NotifyChampshipClose - (*NotifyChampshipTimesOpen)(nil), // 209: tutorial.NotifyChampshipTimesOpen - (*NotifyChampshipTimesClose)(nil), // 210: tutorial.NotifyChampshipTimesClose - (*NotifyChampshipSettleOpen)(nil), // 211: tutorial.NotifyChampshipSettleOpen - (*NotifyChampshipSettleClose)(nil), // 212: tutorial.NotifyChampshipSettleClose - (*ReqChampshipAddScore)(nil), // 213: tutorial.ReqChampshipAddScore - (*ResChampshipAddScore)(nil), // 214: tutorial.ResChampshipAddScore - (*ReqChampshipAddTime)(nil), // 215: tutorial.ReqChampshipAddTime - (*ResChampshipAddTime)(nil), // 216: tutorial.ResChampshipAddTime - (*PlayerPayItem)(nil), // 217: tutorial.PlayerPayItem - (*ReqPlayerPayData)(nil), // 218: tutorial.ReqPlayerPayData - (*ResPlayerPayData)(nil), // 219: tutorial.ResPlayerPayData - (*ReqAddPay)(nil), // 220: tutorial.ReqAddPay - (*ResAddPay)(nil), // 221: tutorial.ResAddPay - (*ReqPlayerSingleData)(nil), // 222: tutorial.ReqPlayerSingleData - (*ResPlayerSingleData)(nil), // 223: tutorial.ResPlayerSingleData - (*ReqOpenNewbiePack)(nil), // 224: tutorial.ReqOpenNewbiePack - (*ResOpenNewbiePack)(nil), // 225: tutorial.ResOpenNewbiePack - (*ReqBuyNewbiePack)(nil), // 226: tutorial.ReqBuyNewbiePack - (*ResBuyNewbiePack)(nil), // 227: tutorial.ResBuyNewbiePack - (*NotifyPlayerSingleData)(nil), // 228: tutorial.NotifyPlayerSingleData - (*ReqAddNoAdCnt)(nil), // 229: tutorial.ReqAddNoAdCnt - (*ResAddNoAdCnt)(nil), // 230: tutorial.ResAddNoAdCnt - (*ReqAddWatchAdCnt)(nil), // 231: tutorial.ReqAddWatchAdCnt - (*ResAddWatchAdCnt)(nil), // 232: tutorial.ResAddWatchAdCnt - (*ReqAdPackData)(nil), // 233: tutorial.ReqAdPackData - (*ResAdPackData)(nil), // 234: tutorial.ResAdPackData - (*NotifyAdPackData)(nil), // 235: tutorial.NotifyAdPackData - (*ReqWatchAdPack)(nil), // 236: tutorial.ReqWatchAdPack - (*ResWatchAdPack)(nil), // 237: tutorial.ResWatchAdPack - (*ForceKickOut)(nil), // 238: tutorial.ForceKickOut - (*ReqLimitData)(nil), // 239: tutorial.ReqLimitData - (*ResLimitData)(nil), // 240: tutorial.ResLimitData - (*NotifyLimitData)(nil), // 241: tutorial.NotifyLimitData - (*ReqAddLimitTime)(nil), // 242: tutorial.ReqAddLimitTime - (*ResAddLimitTime)(nil), // 243: tutorial.ResAddLimitTime - (*ReqGenSuperOrder)(nil), // 244: tutorial.ReqGenSuperOrder - (*ResGenSuperOrder)(nil), // 245: tutorial.ResGenSuperOrder - (*ReqEndSuperOrder)(nil), // 246: tutorial.ReqEndSuperOrder - (*ResEndSuperOrder)(nil), // 247: tutorial.ResEndSuperOrder - (*NotifyLimitCardSwapData)(nil), // 248: tutorial.NotifyLimitCardSwapData - (*ReqCompleteDoubleHit)(nil), // 249: tutorial.ReqCompleteDoubleHit - (*ResCompleteDoubleHit)(nil), // 250: tutorial.ResCompleteDoubleHit - (*ReqTagThief)(nil), // 251: tutorial.ReqTagThief - (*ResTagThief)(nil), // 252: tutorial.ResTagThief - (*NotifyRenewTagThief)(nil), // 253: tutorial.NotifyRenewTagThief - (*ReqPlayerProfileData)(nil), // 254: tutorial.ReqPlayerProfileData - (*ResPlayerProfileData)(nil), // 255: tutorial.ResPlayerProfileData - (*ReqPlayerBriefProfileData)(nil), // 256: tutorial.ReqPlayerBriefProfileData - (*ResPlayerBriefProfileData)(nil), // 257: tutorial.ResPlayerBriefProfileData - (*ReqUpdatePlayerProfile)(nil), // 258: tutorial.ReqUpdatePlayerProfile - (*ResUpdatePlayerProfile)(nil), // 259: tutorial.ResUpdatePlayerProfile - (*ReqUpdateFBPicURL)(nil), // 260: tutorial.ReqUpdateFBPicURL - (*ResUpdateFBPicURL)(nil), // 261: tutorial.ResUpdateFBPicURL - (*FriendInfo)(nil), // 262: tutorial.FriendInfo - (*ReqFriendData)(nil), // 263: tutorial.ReqFriendData - (*ResFriendData)(nil), // 264: tutorial.ResFriendData - (*AddFriendData)(nil), // 265: tutorial.AddFriendData - (*ReqWillPlayerDetail)(nil), // 266: tutorial.ReqWillPlayerDetail - (*ResWillPlayerDetail)(nil), // 267: tutorial.ResWillPlayerDetail - (*ReqAddFriendData)(nil), // 268: tutorial.ReqAddFriendData - (*ResAddFriendData)(nil), // 269: tutorial.ResAddFriendData - (*NotifyAddFriendReq)(nil), // 270: tutorial.NotifyAddFriendReq - (*ReqAllAddFriendInfo)(nil), // 271: tutorial.ReqAllAddFriendInfo - (*ResAllAddFriendInfo)(nil), // 272: tutorial.ResAllAddFriendInfo - (*ReqAgreeFriendReq)(nil), // 273: tutorial.ReqAgreeFriendReq - (*ResAgreeFriendReq)(nil), // 274: tutorial.ResAgreeFriendReq - (*NotifyAgreeAddFriend)(nil), // 275: tutorial.NotifyAgreeAddFriend - (*ReqRefuseFriendReq)(nil), // 276: tutorial.ReqRefuseFriendReq - (*ResRefuseFriendReq)(nil), // 277: tutorial.ResRefuseFriendReq - (*NotifyDeleteFriend)(nil), // 278: tutorial.NotifyDeleteFriend - (*ReqDeleteFriend)(nil), // 279: tutorial.ReqDeleteFriend - (*ResDeleteFriend)(nil), // 280: tutorial.ResDeleteFriend - (*ReqAutoFBAddFriend)(nil), // 281: tutorial.ReqAutoFBAddFriend - (*ResAutoFBAddFriend)(nil), // 282: tutorial.ResAutoFBAddFriend - (*NotifySuccessInviteAddFriend)(nil), // 283: tutorial.NotifySuccessInviteAddFriend - (*NotifySuccessFBAddFriend)(nil), // 284: tutorial.NotifySuccessFBAddFriend - (*ReqRecommendFriendList)(nil), // 285: tutorial.ReqRecommendFriendList - (*ResRecommendFriendList)(nil), // 286: tutorial.ResRecommendFriendList - (*ReqFriendTreasureData)(nil), // 287: tutorial.ReqFriendTreasureData - (*ResFriendTreasureData)(nil), // 288: tutorial.ResFriendTreasureData - (*ReqUpdateFriendStar)(nil), // 289: tutorial.ReqUpdateFriendStar - (*ResUpdateFriendStar)(nil), // 290: tutorial.ResUpdateFriendStar - (*NotifyFriendTreasureStar)(nil), // 291: tutorial.NotifyFriendTreasureStar - (*ExchangeCardItem)(nil), // 292: tutorial.ExchangeCardItem - (*ReqExchangeCardBoxData)(nil), // 293: tutorial.ReqExchangeCardBoxData - (*ResExchangeCardBoxData)(nil), // 294: tutorial.ResExchangeCardBoxData - (*NotifyCardDailyRenew)(nil), // 295: tutorial.NotifyCardDailyRenew - (*ReqDonateFriendCard)(nil), // 296: tutorial.ReqDonateFriendCard - (*ResDonateFriendCard)(nil), // 297: tutorial.ResDonateFriendCard - (*NotifyDonateFriendCard)(nil), // 298: tutorial.NotifyDonateFriendCard - (*ReqGetDonateCard)(nil), // 299: tutorial.ReqGetDonateCard - (*NotifyGetDonateCard)(nil), // 300: tutorial.NotifyGetDonateCard - (*ResGetDonateCard)(nil), // 301: tutorial.ResGetDonateCard - (*ReqRefuseExchange)(nil), // 302: tutorial.ReqRefuseExchange - (*ResRefuseExchange)(nil), // 303: tutorial.ResRefuseExchange - (*NOtifyRefuseExchange)(nil), // 304: tutorial.NOtifyRefuseExchange - (*ReqExchangeCard)(nil), // 305: tutorial.ReqExchangeCard - (*ResExchangeCard)(nil), // 306: tutorial.ResExchangeCard - (*NotifyExchangeTimeOut)(nil), // 307: tutorial.NotifyExchangeTimeOut - (*NotifyExchangeCard)(nil), // 308: tutorial.NotifyExchangeCard - (*ReqReceiptCard)(nil), // 309: tutorial.ReqReceiptCard - (*ResReceiptCard)(nil), // 310: tutorial.ResReceiptCard - (*NotifyReceiptCard)(nil), // 311: tutorial.NotifyReceiptCard - (*ReqCompleteExchangeCard)(nil), // 312: tutorial.ReqCompleteExchangeCard - (*ResCompleteExchangeCard)(nil), // 313: tutorial.ResCompleteExchangeCard - (*NotifyCompleteExchangeCard)(nil), // 314: tutorial.NotifyCompleteExchangeCard - (*ReqGetExchangeCard)(nil), // 315: tutorial.ReqGetExchangeCard - (*NotifyGetExchangeCard)(nil), // 316: tutorial.NotifyGetExchangeCard - (*ResGetExchangeCard)(nil), // 317: tutorial.ResGetExchangeCard - (*NotifyDeleteGoldCardSwap)(nil), // 318: tutorial.NotifyDeleteGoldCardSwap - (*NotifyRequestTimeOut)(nil), // 319: tutorial.NotifyRequestTimeOut - (*ReqRequestCard)(nil), // 320: tutorial.ReqRequestCard - (*ResRequestCard)(nil), // 321: tutorial.ResRequestCard - (*NotifyRequestCard)(nil), // 322: tutorial.NotifyRequestCard - (*ReqCompleteRequestCard)(nil), // 323: tutorial.ReqCompleteRequestCard - (*ResCompleteRequestCard)(nil), // 324: tutorial.ResCompleteRequestCard - (*NotifyHaveFriendCompleteReq)(nil), // 325: tutorial.NotifyHaveFriendCompleteReq - (*NotifyCompleteRequestCard)(nil), // 326: tutorial.NotifyCompleteRequestCard - (*ReqRefuseRequestCard)(nil), // 327: tutorial.ReqRefuseRequestCard - (*ResRefuseRequestCard)(nil), // 328: tutorial.ResRefuseRequestCard - (*NotifyRefuseRequestCard)(nil), // 329: tutorial.NotifyRefuseRequestCard - (*ReqGetRequestCard)(nil), // 330: tutorial.ReqGetRequestCard - (*ResGetRequestCard)(nil), // 331: tutorial.ResGetRequestCard - (*ReqBindFacebookAccount)(nil), // 332: tutorial.ReqBindFacebookAccount - (*ResBindFacebookAccount)(nil), // 333: tutorial.ResBindFacebookAccount - (*ReqOnlyBindFacebook)(nil), // 334: tutorial.ReqOnlyBindFacebook - (*ResOnlyBindFacebook)(nil), // 335: tutorial.ResOnlyBindFacebook - (*ReqUnBindFacebook)(nil), // 336: tutorial.ReqUnBindFacebook - (*ResUnBindFacebook)(nil), // 337: tutorial.ResUnBindFacebook - (*ReqSynGameData)(nil), // 338: tutorial.ReqSynGameData - (*ResSynGameData)(nil), // 339: tutorial.ResSynGameData - (*ReqFriendEventData)(nil), // 340: tutorial.ReqFriendEventData - (*FriendEventData)(nil), // 341: tutorial.FriendEventData - (*ResFriendEventData)(nil), // 342: tutorial.ResFriendEventData - (*NotifyNewFriendEvent)(nil), // 343: tutorial.NotifyNewFriendEvent - (*NotifyFriendEventComplete)(nil), // 344: tutorial.NotifyFriendEventComplete - (*ReqUpdatePetProfile)(nil), // 345: tutorial.ReqUpdatePetProfile - (*ResUpdatePetProfile)(nil), // 346: tutorial.ResUpdatePetProfile - (*ReqPlayerPetData)(nil), // 347: tutorial.ReqPlayerPetData - (*ResPlayerPetData)(nil), // 348: tutorial.ResPlayerPetData - (*PetHomeInterActST)(nil), // 349: tutorial.PetHomeInterActST - (*ReqPetHomeData)(nil), // 350: tutorial.ReqPetHomeData - (*ResPetHomeData)(nil), // 351: tutorial.ResPetHomeData - (*ReqUnlockDecorate)(nil), // 352: tutorial.ReqUnlockDecorate - (*ResUnlockDecorate)(nil), // 353: tutorial.ResUnlockDecorate - (*ReqSaveSelectDecorate)(nil), // 354: tutorial.ReqSaveSelectDecorate - (*ResSaveSelectDecorate)(nil), // 355: tutorial.ResSaveSelectDecorate - (*NotifyPetGoHome)(nil), // 356: tutorial.NotifyPetGoHome - (*NotifyPetLeave)(nil), // 357: tutorial.NotifyPetLeave - (*ReqOpenOtherPetHome)(nil), // 358: tutorial.ReqOpenOtherPetHome - (*ResOpenOtherPetHome)(nil), // 359: tutorial.ResOpenOtherPetHome - (*ReqCompleteMiniGame)(nil), // 360: tutorial.ReqCompleteMiniGame - (*ResCompleteMiniGame)(nil), // 361: tutorial.ResCompleteMiniGame - (*ReqOpenSelfPet)(nil), // 362: tutorial.ReqOpenSelfPet - (*ResOpenSelfPet)(nil), // 363: tutorial.ResOpenSelfPet - (*NotifyPetWorkEnd)(nil), // 364: tutorial.NotifyPetWorkEnd - (*ReqPetHomeInterActST)(nil), // 365: tutorial.ReqPetHomeInterActST - (*ResPetHomeInterActST)(nil), // 366: tutorial.ResPetHomeInterActST - (*ReqShiftVisitPet)(nil), // 367: tutorial.ReqShiftVisitPet - (*ResShiftVisitPet)(nil), // 368: tutorial.ResShiftVisitPet - (*ReqCallBackPet)(nil), // 369: tutorial.ReqCallBackPet - (*ResCallBackPet)(nil), // 370: tutorial.ResCallBackPet - (*IntPack)(nil), // 371: tutorial.IntPack - (*Item)(nil), // 372: tutorial.Item - (*UseItemRequest)(nil), // 373: tutorial.UseItemRequest - (*UseItemResponse)(nil), // 374: tutorial.UseItemResponse - (*Hello)(nil), // 375: tutorial.Hello - (*ReqSetEnergyMul)(nil), // 376: tutorial.ReqSetEnergyMul - (*ResSetEnergyMul)(nil), // 377: tutorial.ResSetEnergyMul - (*BaseInfo)(nil), // 378: tutorial.BaseInfo - (*ReqUserInfo)(nil), // 379: tutorial.ReqUserInfo - (*UserInfo)(nil), // 380: tutorial.UserInfo - (*ReqSetName)(nil), // 381: tutorial.ReqSetName - (*ResSetName)(nil), // 382: tutorial.ResSetName - (*ReqBuyEnergy)(nil), // 383: tutorial.ReqBuyEnergy - (*ResBuyEnergy)(nil), // 384: tutorial.ResBuyEnergy - (*ReqGetHandbookReward)(nil), // 385: tutorial.ReqGetHandbookReward - (*HandbookInfo)(nil), // 386: tutorial.HandbookInfo - (*Handbook)(nil), // 387: tutorial.Handbook - (*ResGetHandbookReward)(nil), // 388: tutorial.ResGetHandbookReward - (*ReqRewardOrder)(nil), // 389: tutorial.ReqRewardOrder - (*ResRewardOrder)(nil), // 390: tutorial.ResRewardOrder - (*Order)(nil), // 391: tutorial.Order - (*ResOrderList)(nil), // 392: tutorial.ResOrderList - (*ResDecorateInfo)(nil), // 393: tutorial.ResDecorateInfo - (*ReqDecorate)(nil), // 394: tutorial.ReqDecorate - (*ResDecorate)(nil), // 395: tutorial.ResDecorate - (*ReqDecorateAll)(nil), // 396: tutorial.ReqDecorateAll - (*ResDecorateAll)(nil), // 397: tutorial.ResDecorateAll - (*ReqGmCommand)(nil), // 398: tutorial.ReqGmCommand - (*Card)(nil), // 399: tutorial.Card - (*ReqCardInfo)(nil), // 400: tutorial.ReqCardInfo - (*ResCardInfo)(nil), // 401: tutorial.ResCardInfo - (*ResNotifyCardTimes)(nil), // 402: tutorial.ResNotifyCardTimes - (*ReqMasterCard)(nil), // 403: tutorial.ReqMasterCard - (*ResMasterCard)(nil), // 404: tutorial.ResMasterCard - (*ReqCardCollectReward)(nil), // 405: tutorial.ReqCardCollectReward - (*ResCardCollectReward)(nil), // 406: tutorial.ResCardCollectReward - (*ReqExStarReward)(nil), // 407: tutorial.ReqExStarReward - (*ResExStarReward)(nil), // 408: tutorial.ResExStarReward - (*ReqAllCollectReward)(nil), // 409: tutorial.ReqAllCollectReward - (*ResAllCollectReward)(nil), // 410: tutorial.ResAllCollectReward - (*ReqCardGive)(nil), // 411: tutorial.ReqCardGive - (*ResCardGive)(nil), // 412: tutorial.ResCardGive - (*ReqAgreeCardGive)(nil), // 413: tutorial.ReqAgreeCardGive - (*ResAgreeCardGive)(nil), // 414: tutorial.ResAgreeCardGive - (*ReqRefuseCardGive)(nil), // 415: tutorial.ReqRefuseCardGive - (*ResRefuseCardGive)(nil), // 416: tutorial.ResRefuseCardGive - (*ReqCardSend)(nil), // 417: tutorial.ReqCardSend - (*ResCardSend)(nil), // 418: tutorial.ResCardSend - (*ReqCardExchange)(nil), // 419: tutorial.ReqCardExchange - (*ResCardExchange)(nil), // 420: tutorial.ResCardExchange - (*ReqSelectCardExchange)(nil), // 421: tutorial.ReqSelectCardExchange - (*ResSelectCardExchange)(nil), // 422: tutorial.ResSelectCardExchange - (*ReqAgreeCardExchange)(nil), // 423: tutorial.ReqAgreeCardExchange - (*ResAgreeCardExchange)(nil), // 424: tutorial.ResAgreeCardExchange - (*ReqRefuseCardSelect)(nil), // 425: tutorial.ReqRefuseCardSelect - (*ResRefuseCardSelect)(nil), // 426: tutorial.ResRefuseCardSelect - (*ReqRefuseCardExchange)(nil), // 427: tutorial.ReqRefuseCardExchange - (*ResRefuseCardExchange)(nil), // 428: tutorial.ResRefuseCardExchange - (*ReqGetFriendCard)(nil), // 429: tutorial.ReqGetFriendCard - (*ResGetFriendCard)(nil), // 430: tutorial.ResGetFriendCard - (*ReqGetGoldCard)(nil), // 431: tutorial.ReqGetGoldCard - (*ResGetGoldCard)(nil), // 432: tutorial.ResGetGoldCard - (*ReqGuideReward)(nil), // 433: tutorial.ReqGuideReward - (*ResGuideReward)(nil), // 434: tutorial.ResGuideReward - (*ResGuildInfo)(nil), // 435: tutorial.ResGuildInfo - (*ResItemPop)(nil), // 436: tutorial.ResItemPop - (*ItemInfo)(nil), // 437: tutorial.ItemInfo - (*CardPack)(nil), // 438: tutorial.CardPack - (*ResDailyTask)(nil), // 439: tutorial.ResDailyTask - (*DailyWeek)(nil), // 440: tutorial.DailyWeek - (*DailyTask)(nil), // 441: tutorial.DailyTask - (*QuestProgress)(nil), // 442: tutorial.QuestProgress - (*ReqGetDailyTaskReward)(nil), // 443: tutorial.ReqGetDailyTaskReward - (*ResGetDailyTaskReward)(nil), // 444: tutorial.ResGetDailyTaskReward - (*ReqGetDailyWeekReward)(nil), // 445: tutorial.ReqGetDailyWeekReward - (*ResGetDailyWeekReward)(nil), // 446: tutorial.ResGetDailyWeekReward - (*ReqDailyUnlock)(nil), // 447: tutorial.ReqDailyUnlock - (*ResDailyUnlock)(nil), // 448: tutorial.ResDailyUnlock - (*ResFaceInfo)(nil), // 449: tutorial.ResFaceInfo - (*FaceInfo)(nil), // 450: tutorial.FaceInfo - (*ReqSetFace)(nil), // 451: tutorial.ReqSetFace - (*ResSetFace)(nil), // 452: tutorial.ResSetFace - (*ResAvatarInfo)(nil), // 453: tutorial.ResAvatarInfo - (*AvatarInfo)(nil), // 454: tutorial.AvatarInfo - (*ReqSetAvatar)(nil), // 455: tutorial.ReqSetAvatar - (*ResSetAvatar)(nil), // 456: tutorial.ResSetAvatar - (*ResSevenLogin)(nil), // 457: tutorial.ResSevenLogin - (*SevenLoginReward)(nil), // 458: tutorial.SevenLoginReward - (*ReqGetSevenLoginReward)(nil), // 459: tutorial.ReqGetSevenLoginReward - (*ResGetSevenLoginReward)(nil), // 460: tutorial.ResGetSevenLoginReward - (*ReqGetMonthLoginReward)(nil), // 461: tutorial.ReqGetMonthLoginReward - (*ResGetMonthLoginReward)(nil), // 462: tutorial.ResGetMonthLoginReward - (*ResActivity)(nil), // 463: tutorial.ResActivity - (*ActivityInfo)(nil), // 464: tutorial.ActivityInfo - (*ReqLimitEvent)(nil), // 465: tutorial.ReqLimitEvent - (*ResLimitEvent)(nil), // 466: tutorial.ResLimitEvent - (*ResLimitEventProgress)(nil), // 467: tutorial.ResLimitEventProgress - (*ReqLimitEventReward)(nil), // 468: tutorial.ReqLimitEventReward - (*ResLimitEventReward)(nil), // 469: tutorial.ResLimitEventReward - (*ReqSelectLimitEvent)(nil), // 470: tutorial.ReqSelectLimitEvent - (*ResSelectLimitEvent)(nil), // 471: tutorial.ResSelectLimitEvent - (*LimitEvent)(nil), // 472: tutorial.LimitEvent - (*LimitEventNotify)(nil), // 473: tutorial.LimitEventNotify - (*ReqLimitSenceReward)(nil), // 474: tutorial.ReqLimitSenceReward - (*ResLimitSenceReward)(nil), // 475: tutorial.ResLimitSenceReward - (*ResChessRainReward)(nil), // 476: tutorial.ResChessRainReward - (*ReqFastProduceReward)(nil), // 477: tutorial.ReqFastProduceReward - (*ResFastProduceReward)(nil), // 478: tutorial.ResFastProduceReward - (*ReqSearchPlayer)(nil), // 479: tutorial.ReqSearchPlayer - (*ResSearchPlayer)(nil), // 480: tutorial.ResSearchPlayer - (*ResPlayerSimple)(nil), // 481: tutorial.ResPlayerSimple - (*ResPlayerRank)(nil), // 482: tutorial.ResPlayerRank - (*ResFriendLog)(nil), // 483: tutorial.ResFriendLog - (*NotifyFriendLog)(nil), // 484: tutorial.NotifyFriendLog - (*NotifyFriendCard)(nil), // 485: tutorial.NotifyFriendCard - (*ResFriendCard)(nil), // 486: tutorial.ResFriendCard - (*ReqKv)(nil), // 487: tutorial.ReqKv - (*ResKv)(nil), // 488: tutorial.ResKv - (*ReqFriendRecommend)(nil), // 489: tutorial.ReqFriendRecommend - (*ResFriendRecommend)(nil), // 490: tutorial.ResFriendRecommend - (*ReqFriendIgnore)(nil), // 491: tutorial.ReqFriendIgnore - (*ResFriendIgnore)(nil), // 492: tutorial.ResFriendIgnore - (*ReqFriendList)(nil), // 493: tutorial.ReqFriendList - (*ResFriendList)(nil), // 494: tutorial.ResFriendList - (*ReqFriendApply)(nil), // 495: tutorial.ReqFriendApply - (*ResFriendApply)(nil), // 496: tutorial.ResFriendApply - (*ResFriendApplyInfo)(nil), // 497: tutorial.ResFriendApplyInfo - (*ReqFriendCardMsg)(nil), // 498: tutorial.ReqFriendCardMsg - (*ResFriendCardMsg)(nil), // 499: tutorial.ResFriendCardMsg - (*ReqFriendTimeLine)(nil), // 500: tutorial.ReqFriendTimeLine - (*ResFriendTimeLine)(nil), // 501: tutorial.ResFriendTimeLine - (*ResFriendApplyNotify)(nil), // 502: tutorial.ResFriendApplyNotify - (*ReqApplyFriend)(nil), // 503: tutorial.ReqApplyFriend - (*ResApplyFriend)(nil), // 504: tutorial.ResApplyFriend - (*ReqAgreeFriend)(nil), // 505: tutorial.ReqAgreeFriend - (*ResAgreeFriend)(nil), // 506: tutorial.ResAgreeFriend - (*ReqRefuseFriend)(nil), // 507: tutorial.ReqRefuseFriend - (*ResRefuseFriend)(nil), // 508: tutorial.ResRefuseFriend - (*ReqDelFriend)(nil), // 509: tutorial.ReqDelFriend - (*ResDelFriend)(nil), // 510: tutorial.ResDelFriend - (*ReqRank)(nil), // 511: tutorial.ReqRank - (*ResRank)(nil), // 512: tutorial.ResRank - (*ReqMailList)(nil), // 513: tutorial.ReqMailList - (*ResMailList)(nil), // 514: tutorial.ResMailList - (*MailInfo)(nil), // 515: tutorial.MailInfo - (*MailNotify)(nil), // 516: tutorial.MailNotify - (*ReqReadMail)(nil), // 517: tutorial.ReqReadMail - (*ResReadMail)(nil), // 518: tutorial.ResReadMail - (*ReqGetMailReward)(nil), // 519: tutorial.ReqGetMailReward - (*ResGetMailReward)(nil), // 520: tutorial.ResGetMailReward - (*ReqDeleteMail)(nil), // 521: tutorial.ReqDeleteMail - (*ResDeleteMail)(nil), // 522: tutorial.ResDeleteMail - (*ResCharge)(nil), // 523: tutorial.ResCharge - (*ResSpecialShop)(nil), // 524: tutorial.ResSpecialShop - (*ResChessShop)(nil), // 525: tutorial.ResChessShop - (*ReqFreeShop)(nil), // 526: tutorial.ReqFreeShop - (*ResFreeShop)(nil), // 527: tutorial.ResFreeShop - (*ReqBuyChessShop)(nil), // 528: tutorial.ReqBuyChessShop - (*ResBuyChessShop)(nil), // 529: tutorial.ResBuyChessShop - (*ReqBuyChessShop2)(nil), // 530: tutorial.ReqBuyChessShop2 - (*ResBuyChessShop2)(nil), // 531: tutorial.ResBuyChessShop2 - (*ReqRefreshChessShop)(nil), // 532: tutorial.ReqRefreshChessShop - (*ResRefreshChessShop)(nil), // 533: tutorial.ResRefreshChessShop - (*ReqEndless)(nil), // 534: tutorial.ReqEndless - (*ResEndless)(nil), // 535: tutorial.ResEndless - (*ResEndlessInfo)(nil), // 536: tutorial.ResEndlessInfo - (*ReqEndlessReward)(nil), // 537: tutorial.ReqEndlessReward - (*ResEndlessReward)(nil), // 538: tutorial.ResEndlessReward - (*ResPiggyBank)(nil), // 539: tutorial.ResPiggyBank - (*ReqPiggyBankReward)(nil), // 540: tutorial.ReqPiggyBankReward - (*ResPiggyBankReward)(nil), // 541: tutorial.ResPiggyBankReward - (*ReqCreateOrderSn)(nil), // 542: tutorial.ReqCreateOrderSn - (*ResCreateOrderSn)(nil), // 543: tutorial.ResCreateOrderSn - (*ReqShippingOrder)(nil), // 544: tutorial.ReqShippingOrder - (*ResShippingOrder)(nil), // 545: tutorial.ResShippingOrder - (*ReqChampship)(nil), // 546: tutorial.ReqChampship - (*ResChampship)(nil), // 547: tutorial.ResChampship - (*ReqChampshipReward)(nil), // 548: tutorial.ReqChampshipReward - (*ResChampshipReward)(nil), // 549: tutorial.ResChampshipReward - (*ReqChampshipRankReward)(nil), // 550: tutorial.ReqChampshipRankReward - (*ResChampshipRankReward)(nil), // 551: tutorial.ResChampshipRankReward - (*ReqChampshipRank)(nil), // 552: tutorial.ReqChampshipRank - (*ResChampshipRank)(nil), // 553: tutorial.ResChampshipRank - (*ReqChampshipPreRank)(nil), // 554: tutorial.ReqChampshipPreRank - (*ResChampshipPreRank)(nil), // 555: tutorial.ResChampshipPreRank - (*ResNotifyCard)(nil), // 556: tutorial.ResNotifyCard - (*ReqSetFacebookUrl)(nil), // 557: tutorial.ReqSetFacebookUrl - (*ResSetFacebookUrl)(nil), // 558: tutorial.ResSetFacebookUrl - (*ReqInviteFriendData)(nil), // 559: tutorial.ReqInviteFriendData - (*ResInviteFriendData)(nil), // 560: tutorial.ResInviteFriendData - (*ReqSelfInvited)(nil), // 561: tutorial.ReqSelfInvited - (*ResSelfInvited)(nil), // 562: tutorial.ResSelfInvited - (*NotifyInvitedSuccess)(nil), // 563: tutorial.NotifyInvitedSuccess - (*ReqGetInviteReward)(nil), // 564: tutorial.ReqGetInviteReward - (*ResGetInviteReward)(nil), // 565: tutorial.ResGetInviteReward - (*ReqAutoAddInviteFriend)(nil), // 566: tutorial.ReqAutoAddInviteFriend - (*ResAutoAddInviteFriend)(nil), // 567: tutorial.ResAutoAddInviteFriend - (*ReqMining)(nil), // 568: tutorial.ReqMining - (*ResMining)(nil), // 569: tutorial.ResMining - (*ReqMiningTake)(nil), // 570: tutorial.ReqMiningTake - (*ResMiningTake)(nil), // 571: tutorial.ResMiningTake - (*ReqMiningReward)(nil), // 572: tutorial.ReqMiningReward - (*ResMiningReward)(nil), // 573: tutorial.ResMiningReward - (*ResActRed)(nil), // 574: tutorial.ResActRed - (*NotifyActRed)(nil), // 575: tutorial.NotifyActRed - (*ActivityNotify)(nil), // 576: tutorial.ActivityNotify - (*ResItem)(nil), // 577: tutorial.ResItem - (*ItemNotify)(nil), // 578: tutorial.ItemNotify - (*ReqGuessColor)(nil), // 579: tutorial.ReqGuessColor - (*ResGuessColor)(nil), // 580: tutorial.ResGuessColor - (*Opponent)(nil), // 581: tutorial.opponent - (*ReqGuessColorTake)(nil), // 582: tutorial.ReqGuessColorTake - (*ResGuessColorTake)(nil), // 583: tutorial.ResGuessColorTake - (*ReqGuessColorReward)(nil), // 584: tutorial.ReqGuessColorReward - (*ResGuessColorReward)(nil), // 585: tutorial.ResGuessColorReward - (*ReqRace)(nil), // 586: tutorial.ReqRace - (*ResRace)(nil), // 587: tutorial.ResRace - (*Raceopponent)(nil), // 588: tutorial.raceopponent - (*ReqRaceStart)(nil), // 589: tutorial.ReqRaceStart - (*ResRaceStart)(nil), // 590: tutorial.ResRaceStart - (*ReqRaceReward)(nil), // 591: tutorial.ReqRaceReward - (*ResRaceReward)(nil), // 592: tutorial.ResRaceReward - (*ReqPlayroom)(nil), // 593: tutorial.ReqPlayroom - (*ResPlayroom)(nil), // 594: tutorial.ResPlayroom - (*NotifyPlayroomWork)(nil), // 595: tutorial.NotifyPlayroomWork - (*NotifyPlayroomLose)(nil), // 596: tutorial.NotifyPlayroomLose - (*NotifyPlayroomMood)(nil), // 597: tutorial.NotifyPlayroomMood - (*FriendRoom)(nil), // 598: tutorial.FriendRoom - (*RoomOpponent)(nil), // 599: tutorial.RoomOpponent - (*ReqPlayroomInfo)(nil), // 600: tutorial.ReqPlayroomInfo - (*ResPlayroomInfo)(nil), // 601: tutorial.ResPlayroomInfo - (*ReqPlayroomFlip)(nil), // 602: tutorial.ReqPlayroomFlip - (*ResPlayroomFlip)(nil), // 603: tutorial.ResPlayroomFlip - (*ReqPlayroomGame)(nil), // 604: tutorial.ReqPlayroomGame - (*ResPlayroomGame)(nil), // 605: tutorial.ResPlayroomGame - (*ReqPlayroomInteract)(nil), // 606: tutorial.ReqPlayroomInteract - (*ResPlayroomInteract)(nil), // 607: tutorial.ResPlayroomInteract - (*ReqPlayroomSetRoom)(nil), // 608: tutorial.ReqPlayroomSetRoom - (*ResPlayroomSetRoom)(nil), // 609: tutorial.ResPlayroomSetRoom - (*ReqPlayroomSelectReward)(nil), // 610: tutorial.ReqPlayroomSelectReward - (*ResPlayroomSelectReward)(nil), // 611: tutorial.ResPlayroomSelectReward - (*ReqPlayroomLose)(nil), // 612: tutorial.ReqPlayroomLose - (*ResPlayroomLose)(nil), // 613: tutorial.ResPlayroomLose - (*ReqPlayroomWork)(nil), // 614: tutorial.ReqPlayroomWork - (*ResPlayroomWork)(nil), // 615: tutorial.ResPlayroomWork - (*ReqPlayroomRest)(nil), // 616: tutorial.ReqPlayroomRest - (*ResPlayroomRest)(nil), // 617: tutorial.ResPlayroomRest - (*ReqPlayroomDraw)(nil), // 618: tutorial.ReqPlayroomDraw - (*ResPlayroomDraw)(nil), // 619: tutorial.ResPlayroomDraw - (*ReqPlayroomChip)(nil), // 620: tutorial.ReqPlayroomChip - (*ResPlayroomChip)(nil), // 621: tutorial.ResPlayroomChip - nil, // 622: tutorial.UpdateBaseItemInfo.MUpdateItemEntry - nil, // 623: tutorial.ResPlayerEmitUnlockData.MEmitUnlockDataEntry - nil, // 624: tutorial.NotifyDailyRenewEmitUnlock.MEmitUnlockDataEntry - nil, // 625: tutorial.UpdatePlayerEmitUnlockData.MEmitUnlockDataEntry - nil, // 626: tutorial.ResPlayerPackData.MPackDataEntry - nil, // 627: tutorial.UpdatePlayerPackData.MPackDataEntry - nil, // 628: tutorial.ResPlayerChessData.MChessDataEntry - nil, // 629: tutorial.UpdatePlayerChessData.MChessDataEntry - nil, // 630: tutorial.ReqGetChessFromBuff.MChessDataEntry - nil, // 631: tutorial.ReqChessEx.MChessDataEntry - nil, // 632: tutorial.ReqPutChessInBag.MChessDataEntry - nil, // 633: tutorial.ReqTakeChessOutBag.MChessDataEntry - nil, // 634: tutorial.ResPlayerGiftData.MGiftDataEntry - nil, // 635: tutorial.UpdatePlayerGiftData.MGiftDataEntry - nil, // 636: tutorial.ResPlayerOrderData.MOrderDataEntry - nil, // 637: tutorial.UpdatePlayerOrderData.MOrderDataEntry - nil, // 638: tutorial.ResChessColorData.MChessColorDataEntry - nil, // 639: tutorial.UpdateChessColorData.MChessColorDataEntry - nil, // 640: tutorial.ResEmitMergeMap.MEmitMergeDataEntry - nil, // 641: tutorial.UpdateEmitMergeMap.MEmitMergeDataEntry - nil, // 642: tutorial.ResEmitCountMap.MEmitCountDataEntry - nil, // 643: tutorial.UpdateEmitCountMap.MEmitCountDataEntry - nil, // 644: tutorial.ResEmitCDStartData.MEmitCDDataEntry - nil, // 645: tutorial.NotifyInitEmitCDTimeData.MEmitCDDataEntry - nil, // 646: tutorial.NotifyEmitCDTimeEndData.MEmitCDDataEntry - nil, // 647: tutorial.ResDecorateData.MDecorateDataEntry - nil, // 648: tutorial.UpdateDecorateData.MDecorateDataEntry - nil, // 649: tutorial.ResShopData.MShopTimeBuyDataEntry - nil, // 650: tutorial.ResShopData.MShopSaleBuyDataEntry - nil, // 651: tutorial.ResShopData.MPackBuyDataEntry - nil, // 652: tutorial.ResShopData.MSpecialOfferBuyDataEntry - nil, // 653: tutorial.ResShopData.MUISpecialOfferBuyDataEntry - nil, // 654: tutorial.ResShopData.MFreePackBuyDataEntry - nil, // 655: tutorial.ResShopData.MDiamondFirstBuyDataEntry - nil, // 656: tutorial.NotifyShopStatusChange.MShopTimeBuyDataEntry - nil, // 657: tutorial.ResShopBuy.MShopTimeBuyDataEntry - nil, // 658: tutorial.ReqRenewItemBuyCnt.MShopDataEntry - nil, // 659: tutorial.ResRenewItemBuyCnt.MShopTimeBuyDataEntry - nil, // 660: tutorial.ResKeyValueData.KeyValuesEntry - nil, // 661: tutorial.UpdateKeyValueData.KeyValuesEntry - nil, // 662: tutorial.ResAdPackData.PackDataEntry - nil, // 663: tutorial.NotifyAdPackData.PackDataEntry - nil, // 664: tutorial.ResWatchAdPack.PackDataEntry - nil, // 665: tutorial.ResPetHomeData.SelectDecorateMapEntry - nil, // 666: tutorial.ReqSaveSelectDecorate.SelectDecorateMapEntry - nil, // 667: tutorial.ResSaveSelectDecorate.SelectDecorateMapEntry - nil, // 668: tutorial.ResOpenOtherPetHome.SelectDecorateMapEntry - nil, // 669: tutorial.ResShiftVisitPet.SelectDecorateMapEntry - nil, // 670: tutorial.UseItemRequest.AttrsEntry - nil, // 671: tutorial.UseItemResponse.AttrsEntry - nil, // 672: tutorial.ReqRewardOrder.MChessDataEntry - nil, // 673: tutorial.ResCardInfo.AllCardEntry - nil, // 674: tutorial.ResGuildInfo.RewardEntry - nil, // 675: tutorial.ResDailyTask.WeekRewardEntry - nil, // 676: tutorial.ResDailyTask.DailyTaskEntry - nil, // 677: tutorial.ResLimitEvent.LimitEventListEntry - nil, // 678: tutorial.ResLimitEventProgress.ProgressRewardEntry - nil, // 679: tutorial.ResKv.KvEntry - nil, // 680: tutorial.ResRank.RankListEntry - nil, // 681: tutorial.ResMailList.MailListEntry - nil, // 682: tutorial.ResCharge.SpecialShopEntry - nil, // 683: tutorial.ResCharge.ChessShopEntry - nil, // 684: tutorial.ResCharge.GiftEntry - nil, // 685: tutorial.ReqBuyChessShop2.MChessDataEntry - nil, // 686: tutorial.ResEndless.EndlessListEntry - nil, // 687: tutorial.ResChampshipRank.RankListEntry - nil, // 688: tutorial.ResChampshipPreRank.RankListEntry - nil, // 689: tutorial.ResNotifyCard.CardEntry - nil, // 690: tutorial.ResNotifyCard.MasterEntry - nil, // 691: tutorial.ResMining.MapEntry - nil, // 692: tutorial.ReqMiningTake.MapEntry - nil, // 693: tutorial.ResActRed.RedEntry - nil, // 694: tutorial.ResItem.ItemEntry - nil, // 695: tutorial.ItemNotify.ItemEntry - nil, // 696: tutorial.ReqGuessColorTake.MapEntry - nil, // 697: tutorial.ResPlayroom.PlayroomEntry - nil, // 698: tutorial.ResPlayroom.MoodEntry - nil, // 699: tutorial.NotifyPlayroomMood.MoodEntry - nil, // 700: tutorial.ResPlayroomInfo.PlayroomEntry - nil, // 701: tutorial.ResPlayroomInfo.ItemsEntry - nil, // 702: tutorial.ResPlayroomInfo.FlipEntry - nil, // 703: tutorial.ResPlayroomGame.ItemsEntry - nil, // 704: tutorial.ReqPlayroomSetRoom.PlayroomEntry + (*ReqPlayroomOutline)(nil), // 37: tutorial.ReqPlayroomOutline + (*ResPlayroomOutline)(nil), // 38: tutorial.ResPlayroomOutline + (*ChessBag)(nil), // 39: tutorial.ChessBag + (*ChessBagGrid)(nil), // 40: tutorial.ChessBagGrid + (*ReqPutChessInBag)(nil), // 41: tutorial.ReqPutChessInBag + (*ResPutChessInBag)(nil), // 42: tutorial.ResPutChessInBag + (*ReqTakeChessOutBag)(nil), // 43: tutorial.ReqTakeChessOutBag + (*ResTakeChessOutBag)(nil), // 44: tutorial.ResTakeChessOutBag + (*ReqBuyChessBagGrid)(nil), // 45: tutorial.ReqBuyChessBagGrid + (*ResBuyChessBagGrid)(nil), // 46: tutorial.ResBuyChessBagGrid + (*ReqPlayerGiftData)(nil), // 47: tutorial.ReqPlayerGiftData + (*ResPlayerGiftData)(nil), // 48: tutorial.ResPlayerGiftData + (*UpdatePlayerGiftData)(nil), // 49: tutorial.UpdatePlayerGiftData + (*ReqAddGift)(nil), // 50: tutorial.ReqAddGift + (*ResAddGift)(nil), // 51: tutorial.ResAddGift + (*ReqUseGift)(nil), // 52: tutorial.ReqUseGift + (*ReqPlayerOrderData)(nil), // 53: tutorial.ReqPlayerOrderData + (*ResPlayerOrderData)(nil), // 54: tutorial.ResPlayerOrderData + (*UpdatePlayerOrderData)(nil), // 55: tutorial.UpdatePlayerOrderData + (*NotifyDailyOrderRenew)(nil), // 56: tutorial.NotifyDailyOrderRenew + (*ReqUnlockingChestID)(nil), // 57: tutorial.ReqUnlockingChestID + (*ResUnlockingChestID)(nil), // 58: tutorial.ResUnlockingChestID + (*NotifyInitUnlockingChestID)(nil), // 59: tutorial.NotifyInitUnlockingChestID + (*NotifyUnlockingChestData)(nil), // 60: tutorial.NotifyUnlockingChestData + (*ReqChestUnlockCD)(nil), // 61: tutorial.ReqChestUnlockCD + (*ResChestUnlockCD)(nil), // 62: tutorial.ResChestUnlockCD + (*ReqChessColorData)(nil), // 63: tutorial.ReqChessColorData + (*ResChessColorData)(nil), // 64: tutorial.ResChessColorData + (*UpdateChessColorData)(nil), // 65: tutorial.UpdateChessColorData + (*ReqEmitMergeMap)(nil), // 66: tutorial.ReqEmitMergeMap + (*ResEmitMergeMap)(nil), // 67: tutorial.ResEmitMergeMap + (*UpdateEmitMergeMap)(nil), // 68: tutorial.UpdateEmitMergeMap + (*ReqEmitCountMap)(nil), // 69: tutorial.ReqEmitCountMap + (*ResEmitCountMap)(nil), // 70: tutorial.ResEmitCountMap + (*UpdateEmitCountMap)(nil), // 71: tutorial.UpdateEmitCountMap + (*ReqEmitCDStartData)(nil), // 72: tutorial.ReqEmitCDStartData + (*ResEmitCDStartData)(nil), // 73: tutorial.ResEmitCDStartData + (*NotifyInitEmitCDTimeData)(nil), // 74: tutorial.NotifyInitEmitCDTimeData + (*NotifyEmitCDTimeEndData)(nil), // 75: tutorial.NotifyEmitCDTimeEndData + (*ReqEmitSubCD)(nil), // 76: tutorial.ReqEmitSubCD + (*ReqDecorateData)(nil), // 77: tutorial.ReqDecorateData + (*ResDecorateData)(nil), // 78: tutorial.ResDecorateData + (*UpdateDecorateData)(nil), // 79: tutorial.UpdateDecorateData + (*ReqShopData)(nil), // 80: tutorial.ReqShopData + (*ResShopData)(nil), // 81: tutorial.ResShopData + (*NotifyShopStatusChange)(nil), // 82: tutorial.NotifyShopStatusChange + (*ReqShopBuy)(nil), // 83: tutorial.ReqShopBuy + (*ResShopBuy)(nil), // 84: tutorial.ResShopBuy + (*ReqRenewItemBuyCnt)(nil), // 85: tutorial.ReqRenewItemBuyCnt + (*ResRenewItemBuyCnt)(nil), // 86: tutorial.ResRenewItemBuyCnt + (*ReqPlayerAdPack)(nil), // 87: tutorial.ReqPlayerAdPack + (*ResPlayerAdPack)(nil), // 88: tutorial.ResPlayerAdPack + (*ReqWatchAd)(nil), // 89: tutorial.ReqWatchAd + (*ResWatchAd)(nil), // 90: tutorial.ResWatchAd + (*BriefEmailStruct)(nil), // 91: tutorial.BriefEmailStruct + (*ReqBriefEmailData)(nil), // 92: tutorial.ReqBriefEmailData + (*ResBriefEmailData)(nil), // 93: tutorial.ResBriefEmailData + (*NotifyNewBriefEmailData)(nil), // 94: tutorial.NotifyNewBriefEmailData + (*ReqDetailEmailData)(nil), // 95: tutorial.ReqDetailEmailData + (*ResDetailEmailData)(nil), // 96: tutorial.ResDetailEmailData + (*ReqGetEmailReward)(nil), // 97: tutorial.ReqGetEmailReward + (*ResGetEmailReward)(nil), // 98: tutorial.ResGetEmailReward + (*ReqDeleteEmail)(nil), // 99: tutorial.ReqDeleteEmail + (*ResDeleteEmail)(nil), // 100: tutorial.ResDeleteEmail + (*LimitedTimeActiveStruct)(nil), // 101: tutorial.LimitedTimeActiveStruct + (*LimitedTimeEndStruct)(nil), // 102: tutorial.LimitedTimeEndStruct + (*NotifyLimitedTimeActiveData)(nil), // 103: tutorial.NotifyLimitedTimeActiveData + (*NotifyLimitedTimeActiveEnd)(nil), // 104: tutorial.NotifyLimitedTimeActiveEnd + (*ReqLimitPassportDetail)(nil), // 105: tutorial.ReqLimitPassportDetail + (*ResLimitPassportDetail)(nil), // 106: tutorial.ResLimitPassportDetail + (*ReqActiveAddStar)(nil), // 107: tutorial.ReqActiveAddStar + (*ResActiveAddStar)(nil), // 108: tutorial.ResActiveAddStar + (*ReqPayPassport)(nil), // 109: tutorial.ReqPayPassport + (*ResPayPassport)(nil), // 110: tutorial.ResPayPassport + (*ReqGetLimitPassportReward)(nil), // 111: tutorial.ReqGetLimitPassportReward + (*ResGetLimitPassportReward)(nil), // 112: tutorial.ResGetLimitPassportReward + (*ReqOpenNewPig)(nil), // 113: tutorial.ReqOpenNewPig + (*ResOpenNewPig)(nil), // 114: tutorial.ResOpenNewPig + (*ReqPigDetailInfo)(nil), // 115: tutorial.ReqPigDetailInfo + (*ResPigDetailInfo)(nil), // 116: tutorial.ResPigDetailInfo + (*UpdateFinishOrderDiamond)(nil), // 117: tutorial.UpdateFinishOrderDiamond + (*ReqGetPigReward)(nil), // 118: tutorial.ReqGetPigReward + (*ResGetPigReward)(nil), // 119: tutorial.ResGetPigReward + (*ReqDropPigReward)(nil), // 120: tutorial.ReqDropPigReward + (*ResDropPigReward)(nil), // 121: tutorial.ResDropPigReward + (*ReqPromotionDetail)(nil), // 122: tutorial.ReqPromotionDetail + (*ResPromotionDetail)(nil), // 123: tutorial.ResPromotionDetail + (*ReqBuyLimitPromotionReward)(nil), // 124: tutorial.ReqBuyLimitPromotionReward + (*ResBuyLimitPromotionReward)(nil), // 125: tutorial.ResBuyLimitPromotionReward + (*ReqInfinitePackDetail)(nil), // 126: tutorial.ReqInfinitePackDetail + (*ResInfinitePackDetail)(nil), // 127: tutorial.ResInfinitePackDetail + (*ReqBuyInfinitePack)(nil), // 128: tutorial.ReqBuyInfinitePack + (*ResBuyInfinitePack)(nil), // 129: tutorial.ResBuyInfinitePack + (*NotifyRefreshInfinitePack)(nil), // 130: tutorial.NotifyRefreshInfinitePack + (*Req7DayLoginDetail)(nil), // 131: tutorial.Req7DayLoginDetail + (*Res7DayLoginDetail)(nil), // 132: tutorial.Res7DayLoginDetail + (*ReqGet7DayLoginPack)(nil), // 133: tutorial.ReqGet7DayLoginPack + (*ResGet7DayLoginPack)(nil), // 134: tutorial.ResGet7DayLoginPack + (*NotifyDailyRenew7Day)(nil), // 135: tutorial.NotifyDailyRenew7Day + (*ReqOfflineReconnect)(nil), // 136: tutorial.ReqOfflineReconnect + (*ResOfflineReconnect)(nil), // 137: tutorial.ResOfflineReconnect + (*ReqServerVersion)(nil), // 138: tutorial.ReqServerVersion + (*ResServerVersion)(nil), // 139: tutorial.ResServerVersion + (*ReqLevelUpPackInfo)(nil), // 140: tutorial.ReqLevelUpPackInfo + (*ResLevelUpPackInfo)(nil), // 141: tutorial.ResLevelUpPackInfo + (*ReqBuyLevelUpPack)(nil), // 142: tutorial.ReqBuyLevelUpPack + (*ResBuyLevelUpPack)(nil), // 143: tutorial.ResBuyLevelUpPack + (*ReqGrowthFundInfo)(nil), // 144: tutorial.ReqGrowthFundInfo + (*ResGrowthFundInfo)(nil), // 145: tutorial.ResGrowthFundInfo + (*ReqBuyGrowthFund)(nil), // 146: tutorial.ReqBuyGrowthFund + (*ResBuyGrowthFund)(nil), // 147: tutorial.ResBuyGrowthFund + (*ReqGetGrowthFundWard)(nil), // 148: tutorial.ReqGetGrowthFundWard + (*ResGetGrowthFundWard)(nil), // 149: tutorial.ResGetGrowthFundWard + (*ReqSupremeGiftInfo)(nil), // 150: tutorial.ReqSupremeGiftInfo + (*ResSupremeGiftInfo)(nil), // 151: tutorial.ResSupremeGiftInfo + (*ReqBuySupremeGift)(nil), // 152: tutorial.ReqBuySupremeGift + (*ResBuySupremeGift)(nil), // 153: tutorial.ResBuySupremeGift + (*NotifySupremeGiftTimeOver)(nil), // 154: tutorial.NotifySupremeGiftTimeOver + (*ReqIllustratedInfo)(nil), // 155: tutorial.ReqIllustratedInfo + (*SingleIllustratedItem)(nil), // 156: tutorial.SingleIllustratedItem + (*CategoryIllustratedData)(nil), // 157: tutorial.CategoryIllustratedData + (*ResIllustratedInfo)(nil), // 158: tutorial.ResIllustratedInfo + (*UpdateIllustrateItem)(nil), // 159: tutorial.UpdateIllustrateItem + (*ReqGetIllustrateItemReward)(nil), // 160: tutorial.ReqGetIllustrateItemReward + (*ResGetIllustrateItemReward)(nil), // 161: tutorial.ResGetIllustrateItemReward + (*ReqCardCollectDetail)(nil), // 162: tutorial.ReqCardCollectDetail + (*ResCardCollectDetail)(nil), // 163: tutorial.ResCardCollectDetail + (*ReqGetCardAlbumReward)(nil), // 164: tutorial.ReqGetCardAlbumReward + (*ResGetCardAlbumReward)(nil), // 165: tutorial.ResGetCardAlbumReward + (*ReqGetAllCardReward)(nil), // 166: tutorial.ReqGetAllCardReward + (*ResGetAllCardReward)(nil), // 167: tutorial.ResGetAllCardReward + (*ReqAddCard)(nil), // 168: tutorial.ReqAddCard + (*ResAddCard)(nil), // 169: tutorial.ResAddCard + (*ReqUnpackCard)(nil), // 170: tutorial.ReqUnpackCard + (*ResUnpackCard)(nil), // 171: tutorial.ResUnpackCard + (*ReqAddMasterCard)(nil), // 172: tutorial.ReqAddMasterCard + (*ResAddMasterCard)(nil), // 173: tutorial.ResAddMasterCard + (*ReqUseMasterCard)(nil), // 174: tutorial.ReqUseMasterCard + (*ResUseMasterCard)(nil), // 175: tutorial.ResUseMasterCard + (*ReqUpdateStickerCount)(nil), // 176: tutorial.ReqUpdateStickerCount + (*ResUpdateStickerCount)(nil), // 177: tutorial.ResUpdateStickerCount + (*ReqBuyStickerItem)(nil), // 178: tutorial.ReqBuyStickerItem + (*ResBuyStickerItem)(nil), // 179: tutorial.ResBuyStickerItem + (*Notify7DayLoginData)(nil), // 180: tutorial.Notify7DayLoginData + (*Req7DaySignal)(nil), // 181: tutorial.Req7DaySignal + (*Res7DaySignal)(nil), // 182: tutorial.Res7DaySignal + (*Notify7DayCallbackData)(nil), // 183: tutorial.Notify7DayCallbackData + (*Notify7DayCallbackEnd)(nil), // 184: tutorial.Notify7DayCallbackEnd + (*Req7DayCallbackSignal)(nil), // 185: tutorial.Req7DayCallbackSignal + (*Res7DayCallbackSignal)(nil), // 186: tutorial.Res7DayCallbackSignal + (*ReqKeyValueData)(nil), // 187: tutorial.ReqKeyValueData + (*ResKeyValueData)(nil), // 188: tutorial.ResKeyValueData + (*UpdateKeyValueData)(nil), // 189: tutorial.UpdateKeyValueData + (*ReqDailyTaskData)(nil), // 190: tutorial.ReqDailyTaskData + (*ResDailyTaskData)(nil), // 191: tutorial.ResDailyTaskData + (*NotifyRenewDailyTask)(nil), // 192: tutorial.NotifyRenewDailyTask + (*UpdateDailyTaskData)(nil), // 193: tutorial.UpdateDailyTaskData + (*NotifyRenewWeekyActive)(nil), // 194: tutorial.NotifyRenewWeekyActive + (*RenewDailyTaskData)(nil), // 195: tutorial.RenewDailyTaskData + (*RenewWeekyActiveData)(nil), // 196: tutorial.RenewWeekyActiveData + (*ReqMileStoneData)(nil), // 197: tutorial.ReqMileStoneData + (*ResMileStoneData)(nil), // 198: tutorial.ResMileStoneData + (*NotifyRenewMileStone)(nil), // 199: tutorial.NotifyRenewMileStone + (*UpdateMileStoneData)(nil), // 200: tutorial.UpdateMileStoneData + (*RenewMileStoneData)(nil), // 201: tutorial.RenewMileStoneData + (*ReqPlayerChampshipData)(nil), // 202: tutorial.ReqPlayerChampshipData + (*ResPlayerChampshipData)(nil), // 203: tutorial.ResPlayerChampshipData + (*ReqChampshipData)(nil), // 204: tutorial.ReqChampshipData + (*ChampshipsPlayerInfo)(nil), // 205: tutorial.ChampshipsPlayerInfo + (*ResChampshipData)(nil), // 206: tutorial.ResChampshipData + (*NotifyNewChampshipRank)(nil), // 207: tutorial.NotifyNewChampshipRank + (*NotifyUpdateChampshipRank)(nil), // 208: tutorial.NotifyUpdateChampshipRank + (*NotifyChampshipOpen)(nil), // 209: tutorial.NotifyChampshipOpen + (*NotifyChampshipClose)(nil), // 210: tutorial.NotifyChampshipClose + (*NotifyChampshipTimesOpen)(nil), // 211: tutorial.NotifyChampshipTimesOpen + (*NotifyChampshipTimesClose)(nil), // 212: tutorial.NotifyChampshipTimesClose + (*NotifyChampshipSettleOpen)(nil), // 213: tutorial.NotifyChampshipSettleOpen + (*NotifyChampshipSettleClose)(nil), // 214: tutorial.NotifyChampshipSettleClose + (*ReqChampshipAddScore)(nil), // 215: tutorial.ReqChampshipAddScore + (*ResChampshipAddScore)(nil), // 216: tutorial.ResChampshipAddScore + (*ReqChampshipAddTime)(nil), // 217: tutorial.ReqChampshipAddTime + (*ResChampshipAddTime)(nil), // 218: tutorial.ResChampshipAddTime + (*PlayerPayItem)(nil), // 219: tutorial.PlayerPayItem + (*ReqPlayerPayData)(nil), // 220: tutorial.ReqPlayerPayData + (*ResPlayerPayData)(nil), // 221: tutorial.ResPlayerPayData + (*ReqAddPay)(nil), // 222: tutorial.ReqAddPay + (*ResAddPay)(nil), // 223: tutorial.ResAddPay + (*ReqPlayerSingleData)(nil), // 224: tutorial.ReqPlayerSingleData + (*ResPlayerSingleData)(nil), // 225: tutorial.ResPlayerSingleData + (*ReqOpenNewbiePack)(nil), // 226: tutorial.ReqOpenNewbiePack + (*ResOpenNewbiePack)(nil), // 227: tutorial.ResOpenNewbiePack + (*ReqBuyNewbiePack)(nil), // 228: tutorial.ReqBuyNewbiePack + (*ResBuyNewbiePack)(nil), // 229: tutorial.ResBuyNewbiePack + (*NotifyPlayerSingleData)(nil), // 230: tutorial.NotifyPlayerSingleData + (*ReqAddNoAdCnt)(nil), // 231: tutorial.ReqAddNoAdCnt + (*ResAddNoAdCnt)(nil), // 232: tutorial.ResAddNoAdCnt + (*ReqAddWatchAdCnt)(nil), // 233: tutorial.ReqAddWatchAdCnt + (*ResAddWatchAdCnt)(nil), // 234: tutorial.ResAddWatchAdCnt + (*ReqAdPackData)(nil), // 235: tutorial.ReqAdPackData + (*ResAdPackData)(nil), // 236: tutorial.ResAdPackData + (*NotifyAdPackData)(nil), // 237: tutorial.NotifyAdPackData + (*ReqWatchAdPack)(nil), // 238: tutorial.ReqWatchAdPack + (*ResWatchAdPack)(nil), // 239: tutorial.ResWatchAdPack + (*ForceKickOut)(nil), // 240: tutorial.ForceKickOut + (*ReqLimitData)(nil), // 241: tutorial.ReqLimitData + (*ResLimitData)(nil), // 242: tutorial.ResLimitData + (*NotifyLimitData)(nil), // 243: tutorial.NotifyLimitData + (*ReqAddLimitTime)(nil), // 244: tutorial.ReqAddLimitTime + (*ResAddLimitTime)(nil), // 245: tutorial.ResAddLimitTime + (*ReqGenSuperOrder)(nil), // 246: tutorial.ReqGenSuperOrder + (*ResGenSuperOrder)(nil), // 247: tutorial.ResGenSuperOrder + (*ReqEndSuperOrder)(nil), // 248: tutorial.ReqEndSuperOrder + (*ResEndSuperOrder)(nil), // 249: tutorial.ResEndSuperOrder + (*NotifyLimitCardSwapData)(nil), // 250: tutorial.NotifyLimitCardSwapData + (*ReqCompleteDoubleHit)(nil), // 251: tutorial.ReqCompleteDoubleHit + (*ResCompleteDoubleHit)(nil), // 252: tutorial.ResCompleteDoubleHit + (*ReqTagThief)(nil), // 253: tutorial.ReqTagThief + (*ResTagThief)(nil), // 254: tutorial.ResTagThief + (*NotifyRenewTagThief)(nil), // 255: tutorial.NotifyRenewTagThief + (*ReqPlayerProfileData)(nil), // 256: tutorial.ReqPlayerProfileData + (*ResPlayerProfileData)(nil), // 257: tutorial.ResPlayerProfileData + (*ReqPlayerBriefProfileData)(nil), // 258: tutorial.ReqPlayerBriefProfileData + (*ResPlayerBriefProfileData)(nil), // 259: tutorial.ResPlayerBriefProfileData + (*ReqUpdatePlayerProfile)(nil), // 260: tutorial.ReqUpdatePlayerProfile + (*ResUpdatePlayerProfile)(nil), // 261: tutorial.ResUpdatePlayerProfile + (*ReqUpdateFBPicURL)(nil), // 262: tutorial.ReqUpdateFBPicURL + (*ResUpdateFBPicURL)(nil), // 263: tutorial.ResUpdateFBPicURL + (*FriendInfo)(nil), // 264: tutorial.FriendInfo + (*ReqFriendData)(nil), // 265: tutorial.ReqFriendData + (*ResFriendData)(nil), // 266: tutorial.ResFriendData + (*AddFriendData)(nil), // 267: tutorial.AddFriendData + (*ReqWillPlayerDetail)(nil), // 268: tutorial.ReqWillPlayerDetail + (*ResWillPlayerDetail)(nil), // 269: tutorial.ResWillPlayerDetail + (*ReqAddFriendData)(nil), // 270: tutorial.ReqAddFriendData + (*ResAddFriendData)(nil), // 271: tutorial.ResAddFriendData + (*NotifyAddFriendReq)(nil), // 272: tutorial.NotifyAddFriendReq + (*ReqAllAddFriendInfo)(nil), // 273: tutorial.ReqAllAddFriendInfo + (*ResAllAddFriendInfo)(nil), // 274: tutorial.ResAllAddFriendInfo + (*ReqAgreeFriendReq)(nil), // 275: tutorial.ReqAgreeFriendReq + (*ResAgreeFriendReq)(nil), // 276: tutorial.ResAgreeFriendReq + (*NotifyAgreeAddFriend)(nil), // 277: tutorial.NotifyAgreeAddFriend + (*ReqRefuseFriendReq)(nil), // 278: tutorial.ReqRefuseFriendReq + (*ResRefuseFriendReq)(nil), // 279: tutorial.ResRefuseFriendReq + (*NotifyDeleteFriend)(nil), // 280: tutorial.NotifyDeleteFriend + (*ReqDeleteFriend)(nil), // 281: tutorial.ReqDeleteFriend + (*ResDeleteFriend)(nil), // 282: tutorial.ResDeleteFriend + (*ReqAutoFBAddFriend)(nil), // 283: tutorial.ReqAutoFBAddFriend + (*ResAutoFBAddFriend)(nil), // 284: tutorial.ResAutoFBAddFriend + (*NotifySuccessInviteAddFriend)(nil), // 285: tutorial.NotifySuccessInviteAddFriend + (*NotifySuccessFBAddFriend)(nil), // 286: tutorial.NotifySuccessFBAddFriend + (*ReqRecommendFriendList)(nil), // 287: tutorial.ReqRecommendFriendList + (*ResRecommendFriendList)(nil), // 288: tutorial.ResRecommendFriendList + (*ReqFriendTreasureData)(nil), // 289: tutorial.ReqFriendTreasureData + (*ResFriendTreasureData)(nil), // 290: tutorial.ResFriendTreasureData + (*ReqUpdateFriendStar)(nil), // 291: tutorial.ReqUpdateFriendStar + (*ResUpdateFriendStar)(nil), // 292: tutorial.ResUpdateFriendStar + (*NotifyFriendTreasureStar)(nil), // 293: tutorial.NotifyFriendTreasureStar + (*ExchangeCardItem)(nil), // 294: tutorial.ExchangeCardItem + (*ReqExchangeCardBoxData)(nil), // 295: tutorial.ReqExchangeCardBoxData + (*ResExchangeCardBoxData)(nil), // 296: tutorial.ResExchangeCardBoxData + (*NotifyCardDailyRenew)(nil), // 297: tutorial.NotifyCardDailyRenew + (*ReqDonateFriendCard)(nil), // 298: tutorial.ReqDonateFriendCard + (*ResDonateFriendCard)(nil), // 299: tutorial.ResDonateFriendCard + (*NotifyDonateFriendCard)(nil), // 300: tutorial.NotifyDonateFriendCard + (*ReqGetDonateCard)(nil), // 301: tutorial.ReqGetDonateCard + (*NotifyGetDonateCard)(nil), // 302: tutorial.NotifyGetDonateCard + (*ResGetDonateCard)(nil), // 303: tutorial.ResGetDonateCard + (*ReqRefuseExchange)(nil), // 304: tutorial.ReqRefuseExchange + (*ResRefuseExchange)(nil), // 305: tutorial.ResRefuseExchange + (*NOtifyRefuseExchange)(nil), // 306: tutorial.NOtifyRefuseExchange + (*ReqExchangeCard)(nil), // 307: tutorial.ReqExchangeCard + (*ResExchangeCard)(nil), // 308: tutorial.ResExchangeCard + (*NotifyExchangeTimeOut)(nil), // 309: tutorial.NotifyExchangeTimeOut + (*NotifyExchangeCard)(nil), // 310: tutorial.NotifyExchangeCard + (*ReqReceiptCard)(nil), // 311: tutorial.ReqReceiptCard + (*ResReceiptCard)(nil), // 312: tutorial.ResReceiptCard + (*NotifyReceiptCard)(nil), // 313: tutorial.NotifyReceiptCard + (*ReqCompleteExchangeCard)(nil), // 314: tutorial.ReqCompleteExchangeCard + (*ResCompleteExchangeCard)(nil), // 315: tutorial.ResCompleteExchangeCard + (*NotifyCompleteExchangeCard)(nil), // 316: tutorial.NotifyCompleteExchangeCard + (*ReqGetExchangeCard)(nil), // 317: tutorial.ReqGetExchangeCard + (*NotifyGetExchangeCard)(nil), // 318: tutorial.NotifyGetExchangeCard + (*ResGetExchangeCard)(nil), // 319: tutorial.ResGetExchangeCard + (*NotifyDeleteGoldCardSwap)(nil), // 320: tutorial.NotifyDeleteGoldCardSwap + (*NotifyRequestTimeOut)(nil), // 321: tutorial.NotifyRequestTimeOut + (*ReqRequestCard)(nil), // 322: tutorial.ReqRequestCard + (*ResRequestCard)(nil), // 323: tutorial.ResRequestCard + (*NotifyRequestCard)(nil), // 324: tutorial.NotifyRequestCard + (*ReqCompleteRequestCard)(nil), // 325: tutorial.ReqCompleteRequestCard + (*ResCompleteRequestCard)(nil), // 326: tutorial.ResCompleteRequestCard + (*NotifyHaveFriendCompleteReq)(nil), // 327: tutorial.NotifyHaveFriendCompleteReq + (*NotifyCompleteRequestCard)(nil), // 328: tutorial.NotifyCompleteRequestCard + (*ReqRefuseRequestCard)(nil), // 329: tutorial.ReqRefuseRequestCard + (*ResRefuseRequestCard)(nil), // 330: tutorial.ResRefuseRequestCard + (*NotifyRefuseRequestCard)(nil), // 331: tutorial.NotifyRefuseRequestCard + (*ReqGetRequestCard)(nil), // 332: tutorial.ReqGetRequestCard + (*ResGetRequestCard)(nil), // 333: tutorial.ResGetRequestCard + (*ReqBindFacebookAccount)(nil), // 334: tutorial.ReqBindFacebookAccount + (*ResBindFacebookAccount)(nil), // 335: tutorial.ResBindFacebookAccount + (*ReqOnlyBindFacebook)(nil), // 336: tutorial.ReqOnlyBindFacebook + (*ResOnlyBindFacebook)(nil), // 337: tutorial.ResOnlyBindFacebook + (*ReqUnBindFacebook)(nil), // 338: tutorial.ReqUnBindFacebook + (*ResUnBindFacebook)(nil), // 339: tutorial.ResUnBindFacebook + (*ReqSynGameData)(nil), // 340: tutorial.ReqSynGameData + (*ResSynGameData)(nil), // 341: tutorial.ResSynGameData + (*ReqFriendEventData)(nil), // 342: tutorial.ReqFriendEventData + (*FriendEventData)(nil), // 343: tutorial.FriendEventData + (*ResFriendEventData)(nil), // 344: tutorial.ResFriendEventData + (*NotifyNewFriendEvent)(nil), // 345: tutorial.NotifyNewFriendEvent + (*NotifyFriendEventComplete)(nil), // 346: tutorial.NotifyFriendEventComplete + (*ReqUpdatePetProfile)(nil), // 347: tutorial.ReqUpdatePetProfile + (*ResUpdatePetProfile)(nil), // 348: tutorial.ResUpdatePetProfile + (*ReqPlayerPetData)(nil), // 349: tutorial.ReqPlayerPetData + (*ResPlayerPetData)(nil), // 350: tutorial.ResPlayerPetData + (*PetHomeInterActST)(nil), // 351: tutorial.PetHomeInterActST + (*ReqPetHomeData)(nil), // 352: tutorial.ReqPetHomeData + (*ResPetHomeData)(nil), // 353: tutorial.ResPetHomeData + (*ReqUnlockDecorate)(nil), // 354: tutorial.ReqUnlockDecorate + (*ResUnlockDecorate)(nil), // 355: tutorial.ResUnlockDecorate + (*ReqSaveSelectDecorate)(nil), // 356: tutorial.ReqSaveSelectDecorate + (*ResSaveSelectDecorate)(nil), // 357: tutorial.ResSaveSelectDecorate + (*NotifyPetGoHome)(nil), // 358: tutorial.NotifyPetGoHome + (*NotifyPetLeave)(nil), // 359: tutorial.NotifyPetLeave + (*ReqOpenOtherPetHome)(nil), // 360: tutorial.ReqOpenOtherPetHome + (*ResOpenOtherPetHome)(nil), // 361: tutorial.ResOpenOtherPetHome + (*ReqCompleteMiniGame)(nil), // 362: tutorial.ReqCompleteMiniGame + (*ResCompleteMiniGame)(nil), // 363: tutorial.ResCompleteMiniGame + (*ReqOpenSelfPet)(nil), // 364: tutorial.ReqOpenSelfPet + (*ResOpenSelfPet)(nil), // 365: tutorial.ResOpenSelfPet + (*NotifyPetWorkEnd)(nil), // 366: tutorial.NotifyPetWorkEnd + (*ReqPetHomeInterActST)(nil), // 367: tutorial.ReqPetHomeInterActST + (*ResPetHomeInterActST)(nil), // 368: tutorial.ResPetHomeInterActST + (*ReqShiftVisitPet)(nil), // 369: tutorial.ReqShiftVisitPet + (*ResShiftVisitPet)(nil), // 370: tutorial.ResShiftVisitPet + (*ReqCallBackPet)(nil), // 371: tutorial.ReqCallBackPet + (*ResCallBackPet)(nil), // 372: tutorial.ResCallBackPet + (*IntPack)(nil), // 373: tutorial.IntPack + (*Item)(nil), // 374: tutorial.Item + (*UseItemRequest)(nil), // 375: tutorial.UseItemRequest + (*UseItemResponse)(nil), // 376: tutorial.UseItemResponse + (*Hello)(nil), // 377: tutorial.Hello + (*ReqSetEnergyMul)(nil), // 378: tutorial.ReqSetEnergyMul + (*ResSetEnergyMul)(nil), // 379: tutorial.ResSetEnergyMul + (*BaseInfo)(nil), // 380: tutorial.BaseInfo + (*ReqUserInfo)(nil), // 381: tutorial.ReqUserInfo + (*UserInfo)(nil), // 382: tutorial.UserInfo + (*ReqSetName)(nil), // 383: tutorial.ReqSetName + (*ResSetName)(nil), // 384: tutorial.ResSetName + (*ReqBuyEnergy)(nil), // 385: tutorial.ReqBuyEnergy + (*ResBuyEnergy)(nil), // 386: tutorial.ResBuyEnergy + (*ReqGetHandbookReward)(nil), // 387: tutorial.ReqGetHandbookReward + (*HandbookInfo)(nil), // 388: tutorial.HandbookInfo + (*Handbook)(nil), // 389: tutorial.Handbook + (*ResGetHandbookReward)(nil), // 390: tutorial.ResGetHandbookReward + (*ReqRewardOrder)(nil), // 391: tutorial.ReqRewardOrder + (*ResRewardOrder)(nil), // 392: tutorial.ResRewardOrder + (*Order)(nil), // 393: tutorial.Order + (*ResOrderList)(nil), // 394: tutorial.ResOrderList + (*ResDecorateInfo)(nil), // 395: tutorial.ResDecorateInfo + (*ReqDecorate)(nil), // 396: tutorial.ReqDecorate + (*ResDecorate)(nil), // 397: tutorial.ResDecorate + (*ReqDecorateAll)(nil), // 398: tutorial.ReqDecorateAll + (*ResDecorateAll)(nil), // 399: tutorial.ResDecorateAll + (*ReqGmCommand)(nil), // 400: tutorial.ReqGmCommand + (*Card)(nil), // 401: tutorial.Card + (*ReqCardInfo)(nil), // 402: tutorial.ReqCardInfo + (*ResCardInfo)(nil), // 403: tutorial.ResCardInfo + (*ResNotifyCardTimes)(nil), // 404: tutorial.ResNotifyCardTimes + (*ReqMasterCard)(nil), // 405: tutorial.ReqMasterCard + (*ResMasterCard)(nil), // 406: tutorial.ResMasterCard + (*ReqCardCollectReward)(nil), // 407: tutorial.ReqCardCollectReward + (*ResCardCollectReward)(nil), // 408: tutorial.ResCardCollectReward + (*ReqExStarReward)(nil), // 409: tutorial.ReqExStarReward + (*ResExStarReward)(nil), // 410: tutorial.ResExStarReward + (*ReqAllCollectReward)(nil), // 411: tutorial.ReqAllCollectReward + (*ResAllCollectReward)(nil), // 412: tutorial.ResAllCollectReward + (*ReqCardGive)(nil), // 413: tutorial.ReqCardGive + (*ResCardGive)(nil), // 414: tutorial.ResCardGive + (*ReqAgreeCardGive)(nil), // 415: tutorial.ReqAgreeCardGive + (*ResAgreeCardGive)(nil), // 416: tutorial.ResAgreeCardGive + (*ReqRefuseCardGive)(nil), // 417: tutorial.ReqRefuseCardGive + (*ResRefuseCardGive)(nil), // 418: tutorial.ResRefuseCardGive + (*ReqCardSend)(nil), // 419: tutorial.ReqCardSend + (*ResCardSend)(nil), // 420: tutorial.ResCardSend + (*ReqCardExchange)(nil), // 421: tutorial.ReqCardExchange + (*ResCardExchange)(nil), // 422: tutorial.ResCardExchange + (*ReqSelectCardExchange)(nil), // 423: tutorial.ReqSelectCardExchange + (*ResSelectCardExchange)(nil), // 424: tutorial.ResSelectCardExchange + (*ReqAgreeCardExchange)(nil), // 425: tutorial.ReqAgreeCardExchange + (*ResAgreeCardExchange)(nil), // 426: tutorial.ResAgreeCardExchange + (*ReqRefuseCardSelect)(nil), // 427: tutorial.ReqRefuseCardSelect + (*ResRefuseCardSelect)(nil), // 428: tutorial.ResRefuseCardSelect + (*ReqRefuseCardExchange)(nil), // 429: tutorial.ReqRefuseCardExchange + (*ResRefuseCardExchange)(nil), // 430: tutorial.ResRefuseCardExchange + (*ReqGetFriendCard)(nil), // 431: tutorial.ReqGetFriendCard + (*ResGetFriendCard)(nil), // 432: tutorial.ResGetFriendCard + (*ReqGetGoldCard)(nil), // 433: tutorial.ReqGetGoldCard + (*ResGetGoldCard)(nil), // 434: tutorial.ResGetGoldCard + (*ReqGuideReward)(nil), // 435: tutorial.ReqGuideReward + (*ResGuideReward)(nil), // 436: tutorial.ResGuideReward + (*ResGuildInfo)(nil), // 437: tutorial.ResGuildInfo + (*ResItemPop)(nil), // 438: tutorial.ResItemPop + (*ItemInfo)(nil), // 439: tutorial.ItemInfo + (*CardPack)(nil), // 440: tutorial.CardPack + (*ResDailyTask)(nil), // 441: tutorial.ResDailyTask + (*DailyWeek)(nil), // 442: tutorial.DailyWeek + (*DailyTask)(nil), // 443: tutorial.DailyTask + (*QuestProgress)(nil), // 444: tutorial.QuestProgress + (*ReqGetDailyTaskReward)(nil), // 445: tutorial.ReqGetDailyTaskReward + (*ResGetDailyTaskReward)(nil), // 446: tutorial.ResGetDailyTaskReward + (*ReqGetDailyWeekReward)(nil), // 447: tutorial.ReqGetDailyWeekReward + (*ResGetDailyWeekReward)(nil), // 448: tutorial.ResGetDailyWeekReward + (*ReqDailyUnlock)(nil), // 449: tutorial.ReqDailyUnlock + (*ResDailyUnlock)(nil), // 450: tutorial.ResDailyUnlock + (*ResFaceInfo)(nil), // 451: tutorial.ResFaceInfo + (*FaceInfo)(nil), // 452: tutorial.FaceInfo + (*ReqSetFace)(nil), // 453: tutorial.ReqSetFace + (*ResSetFace)(nil), // 454: tutorial.ResSetFace + (*ResAvatarInfo)(nil), // 455: tutorial.ResAvatarInfo + (*AvatarInfo)(nil), // 456: tutorial.AvatarInfo + (*ReqSetAvatar)(nil), // 457: tutorial.ReqSetAvatar + (*ResSetAvatar)(nil), // 458: tutorial.ResSetAvatar + (*ResSevenLogin)(nil), // 459: tutorial.ResSevenLogin + (*SevenLoginReward)(nil), // 460: tutorial.SevenLoginReward + (*ReqGetSevenLoginReward)(nil), // 461: tutorial.ReqGetSevenLoginReward + (*ResGetSevenLoginReward)(nil), // 462: tutorial.ResGetSevenLoginReward + (*ReqGetMonthLoginReward)(nil), // 463: tutorial.ReqGetMonthLoginReward + (*ResGetMonthLoginReward)(nil), // 464: tutorial.ResGetMonthLoginReward + (*ResActivity)(nil), // 465: tutorial.ResActivity + (*ActivityInfo)(nil), // 466: tutorial.ActivityInfo + (*ReqLimitEvent)(nil), // 467: tutorial.ReqLimitEvent + (*ResLimitEvent)(nil), // 468: tutorial.ResLimitEvent + (*ResLimitEventProgress)(nil), // 469: tutorial.ResLimitEventProgress + (*ReqLimitEventReward)(nil), // 470: tutorial.ReqLimitEventReward + (*ResLimitEventReward)(nil), // 471: tutorial.ResLimitEventReward + (*ReqSelectLimitEvent)(nil), // 472: tutorial.ReqSelectLimitEvent + (*ResSelectLimitEvent)(nil), // 473: tutorial.ResSelectLimitEvent + (*LimitEvent)(nil), // 474: tutorial.LimitEvent + (*LimitEventNotify)(nil), // 475: tutorial.LimitEventNotify + (*ReqLimitSenceReward)(nil), // 476: tutorial.ReqLimitSenceReward + (*ResLimitSenceReward)(nil), // 477: tutorial.ResLimitSenceReward + (*ResChessRainReward)(nil), // 478: tutorial.ResChessRainReward + (*ReqFastProduceReward)(nil), // 479: tutorial.ReqFastProduceReward + (*ResFastProduceReward)(nil), // 480: tutorial.ResFastProduceReward + (*ReqSearchPlayer)(nil), // 481: tutorial.ReqSearchPlayer + (*ResSearchPlayer)(nil), // 482: tutorial.ResSearchPlayer + (*ResPlayerSimple)(nil), // 483: tutorial.ResPlayerSimple + (*ResPlayerRank)(nil), // 484: tutorial.ResPlayerRank + (*ResFriendLog)(nil), // 485: tutorial.ResFriendLog + (*NotifyFriendLog)(nil), // 486: tutorial.NotifyFriendLog + (*NotifyFriendCard)(nil), // 487: tutorial.NotifyFriendCard + (*ResFriendCard)(nil), // 488: tutorial.ResFriendCard + (*ReqKv)(nil), // 489: tutorial.ReqKv + (*ResKv)(nil), // 490: tutorial.ResKv + (*ReqFriendRecommend)(nil), // 491: tutorial.ReqFriendRecommend + (*ResFriendRecommend)(nil), // 492: tutorial.ResFriendRecommend + (*ReqFriendIgnore)(nil), // 493: tutorial.ReqFriendIgnore + (*ResFriendIgnore)(nil), // 494: tutorial.ResFriendIgnore + (*ReqFriendList)(nil), // 495: tutorial.ReqFriendList + (*ResFriendList)(nil), // 496: tutorial.ResFriendList + (*ReqFriendApply)(nil), // 497: tutorial.ReqFriendApply + (*ResFriendApply)(nil), // 498: tutorial.ResFriendApply + (*ResFriendApplyInfo)(nil), // 499: tutorial.ResFriendApplyInfo + (*ReqFriendCardMsg)(nil), // 500: tutorial.ReqFriendCardMsg + (*ResFriendCardMsg)(nil), // 501: tutorial.ResFriendCardMsg + (*ReqFriendTimeLine)(nil), // 502: tutorial.ReqFriendTimeLine + (*ResFriendTimeLine)(nil), // 503: tutorial.ResFriendTimeLine + (*ResFriendApplyNotify)(nil), // 504: tutorial.ResFriendApplyNotify + (*ReqApplyFriend)(nil), // 505: tutorial.ReqApplyFriend + (*ResApplyFriend)(nil), // 506: tutorial.ResApplyFriend + (*ReqAgreeFriend)(nil), // 507: tutorial.ReqAgreeFriend + (*ResAgreeFriend)(nil), // 508: tutorial.ResAgreeFriend + (*ReqRefuseFriend)(nil), // 509: tutorial.ReqRefuseFriend + (*ResRefuseFriend)(nil), // 510: tutorial.ResRefuseFriend + (*ReqDelFriend)(nil), // 511: tutorial.ReqDelFriend + (*ResDelFriend)(nil), // 512: tutorial.ResDelFriend + (*ReqRank)(nil), // 513: tutorial.ReqRank + (*ResRank)(nil), // 514: tutorial.ResRank + (*ReqMailList)(nil), // 515: tutorial.ReqMailList + (*ResMailList)(nil), // 516: tutorial.ResMailList + (*MailInfo)(nil), // 517: tutorial.MailInfo + (*MailNotify)(nil), // 518: tutorial.MailNotify + (*ReqReadMail)(nil), // 519: tutorial.ReqReadMail + (*ResReadMail)(nil), // 520: tutorial.ResReadMail + (*ReqGetMailReward)(nil), // 521: tutorial.ReqGetMailReward + (*ResGetMailReward)(nil), // 522: tutorial.ResGetMailReward + (*ReqDeleteMail)(nil), // 523: tutorial.ReqDeleteMail + (*ResDeleteMail)(nil), // 524: tutorial.ResDeleteMail + (*ResCharge)(nil), // 525: tutorial.ResCharge + (*ResSpecialShop)(nil), // 526: tutorial.ResSpecialShop + (*ResChessShop)(nil), // 527: tutorial.ResChessShop + (*ReqFreeShop)(nil), // 528: tutorial.ReqFreeShop + (*ResFreeShop)(nil), // 529: tutorial.ResFreeShop + (*ReqBuyChessShop)(nil), // 530: tutorial.ReqBuyChessShop + (*ResBuyChessShop)(nil), // 531: tutorial.ResBuyChessShop + (*ReqBuyChessShop2)(nil), // 532: tutorial.ReqBuyChessShop2 + (*ResBuyChessShop2)(nil), // 533: tutorial.ResBuyChessShop2 + (*ReqRefreshChessShop)(nil), // 534: tutorial.ReqRefreshChessShop + (*ResRefreshChessShop)(nil), // 535: tutorial.ResRefreshChessShop + (*ReqEndless)(nil), // 536: tutorial.ReqEndless + (*ResEndless)(nil), // 537: tutorial.ResEndless + (*ResEndlessInfo)(nil), // 538: tutorial.ResEndlessInfo + (*ReqEndlessReward)(nil), // 539: tutorial.ReqEndlessReward + (*ResEndlessReward)(nil), // 540: tutorial.ResEndlessReward + (*ResPiggyBank)(nil), // 541: tutorial.ResPiggyBank + (*ReqPiggyBankReward)(nil), // 542: tutorial.ReqPiggyBankReward + (*ResPiggyBankReward)(nil), // 543: tutorial.ResPiggyBankReward + (*ReqCreateOrderSn)(nil), // 544: tutorial.ReqCreateOrderSn + (*ResCreateOrderSn)(nil), // 545: tutorial.ResCreateOrderSn + (*ReqShippingOrder)(nil), // 546: tutorial.ReqShippingOrder + (*ResShippingOrder)(nil), // 547: tutorial.ResShippingOrder + (*ReqChampship)(nil), // 548: tutorial.ReqChampship + (*ResChampship)(nil), // 549: tutorial.ResChampship + (*ReqChampshipReward)(nil), // 550: tutorial.ReqChampshipReward + (*ResChampshipReward)(nil), // 551: tutorial.ResChampshipReward + (*ReqChampshipRankReward)(nil), // 552: tutorial.ReqChampshipRankReward + (*ResChampshipRankReward)(nil), // 553: tutorial.ResChampshipRankReward + (*ReqChampshipRank)(nil), // 554: tutorial.ReqChampshipRank + (*ResChampshipRank)(nil), // 555: tutorial.ResChampshipRank + (*ReqChampshipPreRank)(nil), // 556: tutorial.ReqChampshipPreRank + (*ResChampshipPreRank)(nil), // 557: tutorial.ResChampshipPreRank + (*ResNotifyCard)(nil), // 558: tutorial.ResNotifyCard + (*ReqSetFacebookUrl)(nil), // 559: tutorial.ReqSetFacebookUrl + (*ResSetFacebookUrl)(nil), // 560: tutorial.ResSetFacebookUrl + (*ReqInviteFriendData)(nil), // 561: tutorial.ReqInviteFriendData + (*ResInviteFriendData)(nil), // 562: tutorial.ResInviteFriendData + (*ReqSelfInvited)(nil), // 563: tutorial.ReqSelfInvited + (*ResSelfInvited)(nil), // 564: tutorial.ResSelfInvited + (*NotifyInvitedSuccess)(nil), // 565: tutorial.NotifyInvitedSuccess + (*ReqGetInviteReward)(nil), // 566: tutorial.ReqGetInviteReward + (*ResGetInviteReward)(nil), // 567: tutorial.ResGetInviteReward + (*ReqAutoAddInviteFriend)(nil), // 568: tutorial.ReqAutoAddInviteFriend + (*ResAutoAddInviteFriend)(nil), // 569: tutorial.ResAutoAddInviteFriend + (*ReqMining)(nil), // 570: tutorial.ReqMining + (*ResMining)(nil), // 571: tutorial.ResMining + (*ReqMiningTake)(nil), // 572: tutorial.ReqMiningTake + (*ResMiningTake)(nil), // 573: tutorial.ResMiningTake + (*ReqMiningReward)(nil), // 574: tutorial.ReqMiningReward + (*ResMiningReward)(nil), // 575: tutorial.ResMiningReward + (*ResActRed)(nil), // 576: tutorial.ResActRed + (*NotifyActRed)(nil), // 577: tutorial.NotifyActRed + (*ActivityNotify)(nil), // 578: tutorial.ActivityNotify + (*ResItem)(nil), // 579: tutorial.ResItem + (*ItemNotify)(nil), // 580: tutorial.ItemNotify + (*ReqGuessColor)(nil), // 581: tutorial.ReqGuessColor + (*ResGuessColor)(nil), // 582: tutorial.ResGuessColor + (*Opponent)(nil), // 583: tutorial.opponent + (*ReqGuessColorTake)(nil), // 584: tutorial.ReqGuessColorTake + (*ResGuessColorTake)(nil), // 585: tutorial.ResGuessColorTake + (*ReqGuessColorReward)(nil), // 586: tutorial.ReqGuessColorReward + (*ResGuessColorReward)(nil), // 587: tutorial.ResGuessColorReward + (*ReqRace)(nil), // 588: tutorial.ReqRace + (*ResRace)(nil), // 589: tutorial.ResRace + (*Raceopponent)(nil), // 590: tutorial.raceopponent + (*ReqRaceStart)(nil), // 591: tutorial.ReqRaceStart + (*ResRaceStart)(nil), // 592: tutorial.ResRaceStart + (*ReqRaceReward)(nil), // 593: tutorial.ReqRaceReward + (*ResRaceReward)(nil), // 594: tutorial.ResRaceReward + (*ReqPlayroom)(nil), // 595: tutorial.ReqPlayroom + (*ResPlayroom)(nil), // 596: tutorial.ResPlayroom + (*NotifyPlayroomWork)(nil), // 597: tutorial.NotifyPlayroomWork + (*NotifyPlayroomLose)(nil), // 598: tutorial.NotifyPlayroomLose + (*NotifyPlayroomMood)(nil), // 599: tutorial.NotifyPlayroomMood + (*FriendRoom)(nil), // 600: tutorial.FriendRoom + (*RoomOpponent)(nil), // 601: tutorial.RoomOpponent + (*ReqPlayroomInfo)(nil), // 602: tutorial.ReqPlayroomInfo + (*ResPlayroomInfo)(nil), // 603: tutorial.ResPlayroomInfo + (*ReqPlayroomFlip)(nil), // 604: tutorial.ReqPlayroomFlip + (*ResPlayroomFlip)(nil), // 605: tutorial.ResPlayroomFlip + (*ReqPlayroomGame)(nil), // 606: tutorial.ReqPlayroomGame + (*ResPlayroomGame)(nil), // 607: tutorial.ResPlayroomGame + (*ReqPlayroomInteract)(nil), // 608: tutorial.ReqPlayroomInteract + (*ResPlayroomInteract)(nil), // 609: tutorial.ResPlayroomInteract + (*ReqPlayroomSetRoom)(nil), // 610: tutorial.ReqPlayroomSetRoom + (*ResPlayroomSetRoom)(nil), // 611: tutorial.ResPlayroomSetRoom + (*ReqPlayroomSelectReward)(nil), // 612: tutorial.ReqPlayroomSelectReward + (*ResPlayroomSelectReward)(nil), // 613: tutorial.ResPlayroomSelectReward + (*ReqPlayroomLose)(nil), // 614: tutorial.ReqPlayroomLose + (*ResPlayroomLose)(nil), // 615: tutorial.ResPlayroomLose + (*ReqPlayroomWork)(nil), // 616: tutorial.ReqPlayroomWork + (*ResPlayroomWork)(nil), // 617: tutorial.ResPlayroomWork + (*ReqPlayroomRest)(nil), // 618: tutorial.ReqPlayroomRest + (*ResPlayroomRest)(nil), // 619: tutorial.ResPlayroomRest + (*ReqPlayroomDraw)(nil), // 620: tutorial.ReqPlayroomDraw + (*ResPlayroomDraw)(nil), // 621: tutorial.ResPlayroomDraw + (*ReqPlayroomChip)(nil), // 622: tutorial.ReqPlayroomChip + (*ResPlayroomChip)(nil), // 623: tutorial.ResPlayroomChip + nil, // 624: tutorial.UpdateBaseItemInfo.MUpdateItemEntry + nil, // 625: tutorial.ResPlayerEmitUnlockData.MEmitUnlockDataEntry + nil, // 626: tutorial.NotifyDailyRenewEmitUnlock.MEmitUnlockDataEntry + nil, // 627: tutorial.UpdatePlayerEmitUnlockData.MEmitUnlockDataEntry + nil, // 628: tutorial.ResPlayerPackData.MPackDataEntry + nil, // 629: tutorial.UpdatePlayerPackData.MPackDataEntry + nil, // 630: tutorial.ResPlayerChessData.MChessDataEntry + nil, // 631: tutorial.UpdatePlayerChessData.MChessDataEntry + nil, // 632: tutorial.ReqGetChessFromBuff.MChessDataEntry + nil, // 633: tutorial.ReqChessEx.MChessDataEntry + nil, // 634: tutorial.ReqPlayroomOutline.MChessDataEntry + nil, // 635: tutorial.ReqPutChessInBag.MChessDataEntry + nil, // 636: tutorial.ReqTakeChessOutBag.MChessDataEntry + nil, // 637: tutorial.ResPlayerGiftData.MGiftDataEntry + nil, // 638: tutorial.UpdatePlayerGiftData.MGiftDataEntry + nil, // 639: tutorial.ResPlayerOrderData.MOrderDataEntry + nil, // 640: tutorial.UpdatePlayerOrderData.MOrderDataEntry + nil, // 641: tutorial.ResChessColorData.MChessColorDataEntry + nil, // 642: tutorial.UpdateChessColorData.MChessColorDataEntry + nil, // 643: tutorial.ResEmitMergeMap.MEmitMergeDataEntry + nil, // 644: tutorial.UpdateEmitMergeMap.MEmitMergeDataEntry + nil, // 645: tutorial.ResEmitCountMap.MEmitCountDataEntry + nil, // 646: tutorial.UpdateEmitCountMap.MEmitCountDataEntry + nil, // 647: tutorial.ResEmitCDStartData.MEmitCDDataEntry + nil, // 648: tutorial.NotifyInitEmitCDTimeData.MEmitCDDataEntry + nil, // 649: tutorial.NotifyEmitCDTimeEndData.MEmitCDDataEntry + nil, // 650: tutorial.ResDecorateData.MDecorateDataEntry + nil, // 651: tutorial.UpdateDecorateData.MDecorateDataEntry + nil, // 652: tutorial.ResShopData.MShopTimeBuyDataEntry + nil, // 653: tutorial.ResShopData.MShopSaleBuyDataEntry + nil, // 654: tutorial.ResShopData.MPackBuyDataEntry + nil, // 655: tutorial.ResShopData.MSpecialOfferBuyDataEntry + nil, // 656: tutorial.ResShopData.MUISpecialOfferBuyDataEntry + nil, // 657: tutorial.ResShopData.MFreePackBuyDataEntry + nil, // 658: tutorial.ResShopData.MDiamondFirstBuyDataEntry + nil, // 659: tutorial.NotifyShopStatusChange.MShopTimeBuyDataEntry + nil, // 660: tutorial.ResShopBuy.MShopTimeBuyDataEntry + nil, // 661: tutorial.ReqRenewItemBuyCnt.MShopDataEntry + nil, // 662: tutorial.ResRenewItemBuyCnt.MShopTimeBuyDataEntry + nil, // 663: tutorial.ResKeyValueData.KeyValuesEntry + nil, // 664: tutorial.UpdateKeyValueData.KeyValuesEntry + nil, // 665: tutorial.ResAdPackData.PackDataEntry + nil, // 666: tutorial.NotifyAdPackData.PackDataEntry + nil, // 667: tutorial.ResWatchAdPack.PackDataEntry + nil, // 668: tutorial.ResPetHomeData.SelectDecorateMapEntry + nil, // 669: tutorial.ReqSaveSelectDecorate.SelectDecorateMapEntry + nil, // 670: tutorial.ResSaveSelectDecorate.SelectDecorateMapEntry + nil, // 671: tutorial.ResOpenOtherPetHome.SelectDecorateMapEntry + nil, // 672: tutorial.ResShiftVisitPet.SelectDecorateMapEntry + nil, // 673: tutorial.UseItemRequest.AttrsEntry + nil, // 674: tutorial.UseItemResponse.AttrsEntry + nil, // 675: tutorial.ReqRewardOrder.MChessDataEntry + nil, // 676: tutorial.ResCardInfo.AllCardEntry + nil, // 677: tutorial.ResGuildInfo.RewardEntry + nil, // 678: tutorial.ResDailyTask.WeekRewardEntry + nil, // 679: tutorial.ResDailyTask.DailyTaskEntry + nil, // 680: tutorial.ResLimitEvent.LimitEventListEntry + nil, // 681: tutorial.ResLimitEventProgress.ProgressRewardEntry + nil, // 682: tutorial.ResKv.KvEntry + nil, // 683: tutorial.ResRank.RankListEntry + nil, // 684: tutorial.ResMailList.MailListEntry + nil, // 685: tutorial.ResCharge.SpecialShopEntry + nil, // 686: tutorial.ResCharge.ChessShopEntry + nil, // 687: tutorial.ResCharge.GiftEntry + nil, // 688: tutorial.ReqBuyChessShop2.MChessDataEntry + nil, // 689: tutorial.ResEndless.EndlessListEntry + nil, // 690: tutorial.ResChampshipRank.RankListEntry + nil, // 691: tutorial.ResChampshipPreRank.RankListEntry + nil, // 692: tutorial.ResNotifyCard.CardEntry + nil, // 693: tutorial.ResNotifyCard.MasterEntry + nil, // 694: tutorial.ResMining.MapEntry + nil, // 695: tutorial.ReqMiningTake.MapEntry + nil, // 696: tutorial.ResActRed.RedEntry + nil, // 697: tutorial.ResItem.ItemEntry + nil, // 698: tutorial.ItemNotify.ItemEntry + nil, // 699: tutorial.ReqGuessColorTake.MapEntry + nil, // 700: tutorial.ResPlayroom.PlayroomEntry + nil, // 701: tutorial.ResPlayroom.MoodEntry + nil, // 702: tutorial.NotifyPlayroomMood.MoodEntry + nil, // 703: tutorial.ResPlayroomInfo.PlayroomEntry + nil, // 704: tutorial.ResPlayroomInfo.ItemsEntry + nil, // 705: tutorial.ResPlayroomInfo.FlipEntry + nil, // 706: tutorial.ResPlayroomGame.ItemsEntry + nil, // 707: tutorial.ReqPlayroomSetRoom.PlayroomEntry } var file_Gameapi_proto_depIdxs = []int32{ - 622, // 0: tutorial.UpdateBaseItemInfo.mUpdateItem:type_name -> tutorial.UpdateBaseItemInfo.MUpdateItemEntry - 623, // 1: tutorial.ResPlayerEmitUnlockData.mEmitUnlockData:type_name -> tutorial.ResPlayerEmitUnlockData.MEmitUnlockDataEntry - 624, // 2: tutorial.NotifyDailyRenewEmitUnlock.mEmitUnlockData:type_name -> tutorial.NotifyDailyRenewEmitUnlock.MEmitUnlockDataEntry - 625, // 3: tutorial.UpdatePlayerEmitUnlockData.mEmitUnlockData:type_name -> tutorial.UpdatePlayerEmitUnlockData.MEmitUnlockDataEntry - 626, // 4: tutorial.ResPlayerPackData.mPackData:type_name -> tutorial.ResPlayerPackData.MPackDataEntry - 627, // 5: tutorial.UpdatePlayerPackData.mPackData:type_name -> tutorial.UpdatePlayerPackData.MPackDataEntry - 628, // 6: tutorial.ResPlayerChessData.mChessData:type_name -> tutorial.ResPlayerChessData.MChessDataEntry - 37, // 7: tutorial.ResPlayerChessInfo.ChessBag:type_name -> tutorial.ChessBag + 624, // 0: tutorial.UpdateBaseItemInfo.mUpdateItem:type_name -> tutorial.UpdateBaseItemInfo.MUpdateItemEntry + 625, // 1: tutorial.ResPlayerEmitUnlockData.mEmitUnlockData:type_name -> tutorial.ResPlayerEmitUnlockData.MEmitUnlockDataEntry + 626, // 2: tutorial.NotifyDailyRenewEmitUnlock.mEmitUnlockData:type_name -> tutorial.NotifyDailyRenewEmitUnlock.MEmitUnlockDataEntry + 627, // 3: tutorial.UpdatePlayerEmitUnlockData.mEmitUnlockData:type_name -> tutorial.UpdatePlayerEmitUnlockData.MEmitUnlockDataEntry + 628, // 4: tutorial.ResPlayerPackData.mPackData:type_name -> tutorial.ResPlayerPackData.MPackDataEntry + 629, // 5: tutorial.UpdatePlayerPackData.mPackData:type_name -> tutorial.UpdatePlayerPackData.MPackDataEntry + 630, // 6: tutorial.ResPlayerChessData.mChessData:type_name -> tutorial.ResPlayerChessData.MChessDataEntry + 39, // 7: tutorial.ResPlayerChessInfo.ChessBag:type_name -> tutorial.ChessBag 0, // 8: tutorial.ChessHandle.type:type_name -> tutorial.HANDLE_TYPE - 629, // 9: tutorial.UpdatePlayerChessData.mChessData:type_name -> tutorial.UpdatePlayerChessData.MChessDataEntry + 631, // 9: tutorial.UpdatePlayerChessData.mChessData:type_name -> tutorial.UpdatePlayerChessData.MChessDataEntry 30, // 10: tutorial.UpdatePlayerChessData.mChessHandle:type_name -> tutorial.ChessHandle 1, // 11: tutorial.ResUpdatePlayerChessData.code:type_name -> tutorial.RES_CODE - 630, // 12: tutorial.ReqGetChessFromBuff.mChessData:type_name -> tutorial.ReqGetChessFromBuff.MChessDataEntry + 632, // 12: tutorial.ReqGetChessFromBuff.mChessData:type_name -> tutorial.ReqGetChessFromBuff.MChessDataEntry 1, // 13: tutorial.ResGetChessFromBuff.code:type_name -> tutorial.RES_CODE - 631, // 14: tutorial.ReqChessEx.mChessData:type_name -> tutorial.ReqChessEx.MChessDataEntry + 633, // 14: tutorial.ReqChessEx.mChessData:type_name -> tutorial.ReqChessEx.MChessDataEntry 1, // 15: tutorial.ResChessEx.code:type_name -> tutorial.RES_CODE - 38, // 16: tutorial.ChessBag.ChessBagGrids:type_name -> tutorial.ChessBagGrid - 632, // 17: tutorial.ReqPutChessInBag.mChessData:type_name -> tutorial.ReqPutChessInBag.MChessDataEntry - 1, // 18: tutorial.ResPutChessInBag.code:type_name -> tutorial.RES_CODE - 633, // 19: tutorial.ReqTakeChessOutBag.mChessData:type_name -> tutorial.ReqTakeChessOutBag.MChessDataEntry - 1, // 20: tutorial.ResTakeChessOutBag.code:type_name -> tutorial.RES_CODE - 1, // 21: tutorial.ResBuyChessBagGrid.code:type_name -> tutorial.RES_CODE - 634, // 22: tutorial.ResPlayerGiftData.mGiftData:type_name -> tutorial.ResPlayerGiftData.MGiftDataEntry - 635, // 23: tutorial.UpdatePlayerGiftData.mGiftData:type_name -> tutorial.UpdatePlayerGiftData.MGiftDataEntry - 636, // 24: tutorial.ResPlayerOrderData.mOrderData:type_name -> tutorial.ResPlayerOrderData.MOrderDataEntry - 637, // 25: tutorial.UpdatePlayerOrderData.mOrderData:type_name -> tutorial.UpdatePlayerOrderData.MOrderDataEntry - 638, // 26: tutorial.ResChessColorData.mChessColorData:type_name -> tutorial.ResChessColorData.MChessColorDataEntry - 639, // 27: tutorial.UpdateChessColorData.mChessColorData:type_name -> tutorial.UpdateChessColorData.MChessColorDataEntry - 640, // 28: tutorial.ResEmitMergeMap.mEmitMergeData:type_name -> tutorial.ResEmitMergeMap.MEmitMergeDataEntry - 641, // 29: tutorial.UpdateEmitMergeMap.mEmitMergeData:type_name -> tutorial.UpdateEmitMergeMap.MEmitMergeDataEntry - 642, // 30: tutorial.ResEmitCountMap.mEmitCountData:type_name -> tutorial.ResEmitCountMap.MEmitCountDataEntry - 643, // 31: tutorial.UpdateEmitCountMap.mEmitCountData:type_name -> tutorial.UpdateEmitCountMap.MEmitCountDataEntry - 644, // 32: tutorial.ResEmitCDStartData.mEmitCDData:type_name -> tutorial.ResEmitCDStartData.MEmitCDDataEntry - 645, // 33: tutorial.NotifyInitEmitCDTimeData.mEmitCDData:type_name -> tutorial.NotifyInitEmitCDTimeData.MEmitCDDataEntry - 646, // 34: tutorial.NotifyEmitCDTimeEndData.mEmitCDData:type_name -> tutorial.NotifyEmitCDTimeEndData.MEmitCDDataEntry - 647, // 35: tutorial.ResDecorateData.mDecorateData:type_name -> tutorial.ResDecorateData.MDecorateDataEntry - 648, // 36: tutorial.UpdateDecorateData.mDecorateData:type_name -> tutorial.UpdateDecorateData.MDecorateDataEntry - 649, // 37: tutorial.ResShopData.mShopTimeBuyData:type_name -> tutorial.ResShopData.MShopTimeBuyDataEntry - 650, // 38: tutorial.ResShopData.mShopSaleBuyData:type_name -> tutorial.ResShopData.MShopSaleBuyDataEntry - 651, // 39: tutorial.ResShopData.mPackBuyData:type_name -> tutorial.ResShopData.MPackBuyDataEntry - 652, // 40: tutorial.ResShopData.mSpecialOfferBuyData:type_name -> tutorial.ResShopData.MSpecialOfferBuyDataEntry - 653, // 41: tutorial.ResShopData.mUISpecialOfferBuyData:type_name -> tutorial.ResShopData.MUISpecialOfferBuyDataEntry - 654, // 42: tutorial.ResShopData.mFreePackBuyData:type_name -> tutorial.ResShopData.MFreePackBuyDataEntry - 655, // 43: tutorial.ResShopData.mDiamondFirstBuyData:type_name -> tutorial.ResShopData.MDiamondFirstBuyDataEntry - 656, // 44: tutorial.NotifyShopStatusChange.mShopTimeBuyData:type_name -> tutorial.NotifyShopStatusChange.MShopTimeBuyDataEntry - 657, // 45: tutorial.ResShopBuy.mShopTimeBuyData:type_name -> tutorial.ResShopBuy.MShopTimeBuyDataEntry - 658, // 46: tutorial.ReqRenewItemBuyCnt.mShopData:type_name -> tutorial.ReqRenewItemBuyCnt.MShopDataEntry - 659, // 47: tutorial.ResRenewItemBuyCnt.mShopTimeBuyData:type_name -> tutorial.ResRenewItemBuyCnt.MShopTimeBuyDataEntry - 89, // 48: tutorial.ResBriefEmailData.mEmailList:type_name -> tutorial.BriefEmailStruct - 89, // 49: tutorial.NotifyNewBriefEmailData.mEmailList:type_name -> tutorial.BriefEmailStruct - 99, // 50: tutorial.NotifyLimitedTimeActiveData.mActiveList:type_name -> tutorial.LimitedTimeActiveStruct - 100, // 51: tutorial.NotifyLimitedTimeActiveEnd.mActiveList:type_name -> tutorial.LimitedTimeEndStruct - 154, // 52: tutorial.CategoryIllustratedData.Items:type_name -> tutorial.SingleIllustratedItem - 155, // 53: tutorial.ResIllustratedInfo.Datas:type_name -> tutorial.CategoryIllustratedData - 660, // 54: tutorial.ResKeyValueData.KeyValues:type_name -> tutorial.ResKeyValueData.KeyValuesEntry - 661, // 55: tutorial.UpdateKeyValueData.KeyValues:type_name -> tutorial.UpdateKeyValueData.KeyValuesEntry - 203, // 56: tutorial.ResChampshipData.GroupRankDataList:type_name -> tutorial.ChampshipsPlayerInfo - 203, // 57: tutorial.NotifyNewChampshipRank.GroupRankDataList:type_name -> tutorial.ChampshipsPlayerInfo - 203, // 58: tutorial.NotifyUpdateChampshipRank.GroupRankDataList:type_name -> tutorial.ChampshipsPlayerInfo - 203, // 59: tutorial.ResChampshipAddScore.GroupRankDataList:type_name -> tutorial.ChampshipsPlayerInfo - 203, // 60: tutorial.ResChampshipAddTime.GroupRankDataList:type_name -> tutorial.ChampshipsPlayerInfo - 217, // 61: tutorial.ResPlayerPayData.PlayerPayData:type_name -> tutorial.PlayerPayItem - 662, // 62: tutorial.ResAdPackData.PackData:type_name -> tutorial.ResAdPackData.PackDataEntry - 663, // 63: tutorial.NotifyAdPackData.PackData:type_name -> tutorial.NotifyAdPackData.PackDataEntry - 664, // 64: tutorial.ResWatchAdPack.PackData:type_name -> tutorial.ResWatchAdPack.PackDataEntry - 262, // 65: tutorial.ResFriendData.FriendInfos:type_name -> tutorial.FriendInfo - 262, // 66: tutorial.AddFriendData.Finfo:type_name -> tutorial.FriendInfo - 262, // 67: tutorial.ResWillPlayerDetail.PlayerInfos:type_name -> tutorial.FriendInfo - 265, // 68: tutorial.NotifyAddFriendReq.ReqInfo:type_name -> tutorial.AddFriendData - 265, // 69: tutorial.ResAllAddFriendInfo.FriendInfos:type_name -> tutorial.AddFriendData - 262, // 70: tutorial.ResAgreeFriendReq.data:type_name -> tutorial.FriendInfo - 262, // 71: tutorial.NotifyAgreeAddFriend.data:type_name -> tutorial.FriendInfo - 262, // 72: tutorial.NotifySuccessInviteAddFriend.data:type_name -> tutorial.FriendInfo - 262, // 73: tutorial.NotifySuccessFBAddFriend.data:type_name -> tutorial.FriendInfo - 262, // 74: tutorial.ResRecommendFriendList.PlayerInfos:type_name -> tutorial.FriendInfo - 292, // 75: tutorial.ResExchangeCardBoxData.ExchangeCardItems:type_name -> tutorial.ExchangeCardItem - 292, // 76: tutorial.ResDonateFriendCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem - 292, // 77: tutorial.NotifyDonateFriendCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem - 292, // 78: tutorial.ReqGetDonateCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem - 292, // 79: tutorial.NotifyGetDonateCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem - 292, // 80: tutorial.ResGetDonateCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem - 292, // 81: tutorial.ReqRefuseExchange.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem - 292, // 82: tutorial.ResRefuseExchange.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem - 292, // 83: tutorial.NOtifyRefuseExchange.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem - 292, // 84: tutorial.ResExchangeCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem - 292, // 85: tutorial.NotifyExchangeTimeOut.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem - 292, // 86: tutorial.NotifyExchangeCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem - 292, // 87: tutorial.ReqReceiptCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem - 292, // 88: tutorial.ResReceiptCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem - 292, // 89: tutorial.NotifyReceiptCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem - 292, // 90: tutorial.ReqCompleteExchangeCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem - 292, // 91: tutorial.ResCompleteExchangeCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem - 292, // 92: tutorial.NotifyCompleteExchangeCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem - 292, // 93: tutorial.ReqGetExchangeCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem - 292, // 94: tutorial.NotifyGetExchangeCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem - 292, // 95: tutorial.ResGetExchangeCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem - 292, // 96: tutorial.NotifyDeleteGoldCardSwap.mExchangeCardItems:type_name -> tutorial.ExchangeCardItem - 292, // 97: tutorial.NotifyRequestTimeOut.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem - 292, // 98: tutorial.ResRequestCard.ExchangeCardItems:type_name -> tutorial.ExchangeCardItem - 292, // 99: tutorial.NotifyRequestCard.ExchangeCardItems:type_name -> tutorial.ExchangeCardItem - 292, // 100: tutorial.ReqCompleteRequestCard.ExchangeCardItems:type_name -> tutorial.ExchangeCardItem - 292, // 101: tutorial.ResCompleteRequestCard.ExchangeCardItems:type_name -> tutorial.ExchangeCardItem - 292, // 102: tutorial.NotifyCompleteRequestCard.ExchangeCardItems:type_name -> tutorial.ExchangeCardItem - 292, // 103: tutorial.ReqRefuseRequestCard.ExchangeCardItems:type_name -> tutorial.ExchangeCardItem - 292, // 104: tutorial.ResRefuseRequestCard.ExchangeCardItems:type_name -> tutorial.ExchangeCardItem - 292, // 105: tutorial.NotifyRefuseRequestCard.ExchangeCardItems:type_name -> tutorial.ExchangeCardItem - 292, // 106: tutorial.ReqGetRequestCard.ExchangeCardItems:type_name -> tutorial.ExchangeCardItem - 292, // 107: tutorial.ResGetRequestCard.ExchangeCardItems:type_name -> tutorial.ExchangeCardItem - 262, // 108: tutorial.FriendEventData.MFriendInfo:type_name -> tutorial.FriendInfo - 341, // 109: tutorial.ResFriendEventData.MFriendEventData:type_name -> tutorial.FriendEventData - 341, // 110: tutorial.NotifyNewFriendEvent.NewEvent:type_name -> tutorial.FriendEventData - 257, // 111: tutorial.PetHomeInterActST.BriefProfile:type_name -> tutorial.ResPlayerBriefProfileData - 665, // 112: tutorial.ResPetHomeData.SelectDecorateMap:type_name -> tutorial.ResPetHomeData.SelectDecorateMapEntry - 666, // 113: tutorial.ReqSaveSelectDecorate.SelectDecorateMap:type_name -> tutorial.ReqSaveSelectDecorate.SelectDecorateMapEntry - 667, // 114: tutorial.ResSaveSelectDecorate.SelectDecorateMap:type_name -> tutorial.ResSaveSelectDecorate.SelectDecorateMapEntry - 257, // 115: tutorial.ResOpenOtherPetHome.BriefProfile:type_name -> tutorial.ResPlayerBriefProfileData - 668, // 116: tutorial.ResOpenOtherPetHome.SelectDecorateMap:type_name -> tutorial.ResOpenOtherPetHome.SelectDecorateMapEntry - 349, // 117: tutorial.ResPetHomeInterActST.mPetHomeInterActSTs:type_name -> tutorial.PetHomeInterActST - 257, // 118: tutorial.ResShiftVisitPet.BriefProfile:type_name -> tutorial.ResPlayerBriefProfileData - 669, // 119: tutorial.ResShiftVisitPet.SelectDecorateMap:type_name -> tutorial.ResShiftVisitPet.SelectDecorateMapEntry - 372, // 120: tutorial.UseItemRequest.items:type_name -> tutorial.Item - 371, // 121: tutorial.UseItemRequest.price:type_name -> tutorial.IntPack - 670, // 122: tutorial.UseItemRequest.attrs:type_name -> tutorial.UseItemRequest.AttrsEntry - 3, // 123: tutorial.UseItemResponse.code:type_name -> tutorial.UseItemResponse.CODE - 372, // 124: tutorial.UseItemResponse.items:type_name -> tutorial.Item - 371, // 125: tutorial.UseItemResponse.price:type_name -> tutorial.IntPack - 671, // 126: tutorial.UseItemResponse.attrs:type_name -> tutorial.UseItemResponse.AttrsEntry - 1, // 127: tutorial.ResSetEnergyMul.ResultCode:type_name -> tutorial.RES_CODE - 454, // 128: tutorial.UserInfo.AvatarList:type_name -> tutorial.AvatarInfo - 450, // 129: tutorial.UserInfo.FaceList:type_name -> tutorial.FaceInfo - 1, // 130: tutorial.ResSetName.ResultCode:type_name -> tutorial.RES_CODE - 1, // 131: tutorial.ResBuyEnergy.Code:type_name -> tutorial.RES_CODE - 386, // 132: tutorial.Handbook.Handbooks:type_name -> tutorial.HandbookInfo - 1, // 133: tutorial.ResGetHandbookReward.Code:type_name -> tutorial.RES_CODE - 672, // 134: tutorial.ReqRewardOrder.mChessData:type_name -> tutorial.ReqRewardOrder.MChessDataEntry - 1, // 135: tutorial.ResRewardOrder.Code:type_name -> tutorial.RES_CODE - 391, // 136: tutorial.ResOrderList.OrderList:type_name -> tutorial.Order - 1, // 137: tutorial.ResDecorate.Code:type_name -> tutorial.RES_CODE - 1, // 138: tutorial.ResDecorateAll.Code:type_name -> tutorial.RES_CODE - 399, // 139: tutorial.ResCardInfo.CardList:type_name -> tutorial.Card - 673, // 140: tutorial.ResCardInfo.AllCard:type_name -> tutorial.ResCardInfo.AllCardEntry - 1, // 141: tutorial.ResMasterCard.Code:type_name -> tutorial.RES_CODE - 1, // 142: tutorial.ResCardCollectReward.Code:type_name -> tutorial.RES_CODE - 1, // 143: tutorial.ResExStarReward.Code:type_name -> tutorial.RES_CODE - 1, // 144: tutorial.ResAllCollectReward.Code:type_name -> tutorial.RES_CODE - 1, // 145: tutorial.ResCardGive.Code:type_name -> tutorial.RES_CODE - 1, // 146: tutorial.ResAgreeCardGive.Code:type_name -> tutorial.RES_CODE - 1, // 147: tutorial.ResRefuseCardGive.Code:type_name -> tutorial.RES_CODE - 1, // 148: tutorial.ResCardSend.Code:type_name -> tutorial.RES_CODE - 1, // 149: tutorial.ResCardExchange.Code:type_name -> tutorial.RES_CODE - 1, // 150: tutorial.ResSelectCardExchange.Code:type_name -> tutorial.RES_CODE - 1, // 151: tutorial.ResAgreeCardExchange.Code:type_name -> tutorial.RES_CODE - 1, // 152: tutorial.ResRefuseCardSelect.Code:type_name -> tutorial.RES_CODE - 1, // 153: tutorial.ResRefuseCardExchange.Code:type_name -> tutorial.RES_CODE - 1, // 154: tutorial.ResGetFriendCard.Code:type_name -> tutorial.RES_CODE - 1, // 155: tutorial.ResGuideReward.Code:type_name -> tutorial.RES_CODE - 674, // 156: tutorial.ResGuildInfo.Reward:type_name -> tutorial.ResGuildInfo.RewardEntry - 437, // 157: tutorial.ResItemPop.Items:type_name -> tutorial.ItemInfo - 438, // 158: tutorial.ResItemPop.CardPacks:type_name -> tutorial.CardPack - 675, // 159: tutorial.ResDailyTask.WeekReward:type_name -> tutorial.ResDailyTask.WeekRewardEntry - 676, // 160: tutorial.ResDailyTask.DailyTask:type_name -> tutorial.ResDailyTask.DailyTaskEntry - 437, // 161: tutorial.DailyWeek.Items:type_name -> tutorial.ItemInfo - 442, // 162: tutorial.DailyTask.Progress:type_name -> tutorial.QuestProgress - 437, // 163: tutorial.DailyTask.Items:type_name -> tutorial.ItemInfo - 1, // 164: tutorial.ResGetDailyTaskReward.Code:type_name -> tutorial.RES_CODE - 1, // 165: tutorial.ResGetDailyWeekReward.Code:type_name -> tutorial.RES_CODE - 1, // 166: tutorial.ResDailyUnlock.Code:type_name -> tutorial.RES_CODE - 450, // 167: tutorial.ResFaceInfo.FaceList:type_name -> tutorial.FaceInfo - 1, // 168: tutorial.ResSetFace.Code:type_name -> tutorial.RES_CODE - 454, // 169: tutorial.ResAvatarInfo.AvatarList:type_name -> tutorial.AvatarInfo - 1, // 170: tutorial.ResSetAvatar.Code:type_name -> tutorial.RES_CODE - 458, // 171: tutorial.ResSevenLogin.WeekReward:type_name -> tutorial.SevenLoginReward - 458, // 172: tutorial.ResSevenLogin.MonthReward:type_name -> tutorial.SevenLoginReward - 437, // 173: tutorial.SevenLoginReward.Item1:type_name -> tutorial.ItemInfo - 437, // 174: tutorial.SevenLoginReward.Item2:type_name -> tutorial.ItemInfo - 437, // 175: tutorial.SevenLoginReward.Item3:type_name -> tutorial.ItemInfo - 1, // 176: tutorial.ResGetSevenLoginReward.Code:type_name -> tutorial.RES_CODE - 1, // 177: tutorial.ResGetMonthLoginReward.Code:type_name -> tutorial.RES_CODE - 464, // 178: tutorial.ResActivity.ActiveList:type_name -> tutorial.ActivityInfo - 677, // 179: tutorial.ResLimitEvent.LimitEventList:type_name -> tutorial.ResLimitEvent.LimitEventListEntry - 678, // 180: tutorial.ResLimitEventProgress.ProgressReward:type_name -> tutorial.ResLimitEventProgress.ProgressRewardEntry - 1, // 181: tutorial.ResLimitEventReward.Code:type_name -> tutorial.RES_CODE - 1, // 182: tutorial.ResSelectLimitEvent.Code:type_name -> tutorial.RES_CODE - 1, // 183: tutorial.ResLimitSenceReward.Code:type_name -> tutorial.RES_CODE - 1, // 184: tutorial.ResFastProduceReward.Code:type_name -> tutorial.RES_CODE - 481, // 185: tutorial.ResSearchPlayer.List:type_name -> tutorial.ResPlayerSimple - 481, // 186: tutorial.ResFriendLog.Player:type_name -> tutorial.ResPlayerSimple - 483, // 187: tutorial.NotifyFriendLog.info:type_name -> tutorial.ResFriendLog - 486, // 188: tutorial.NotifyFriendCard.Info:type_name -> tutorial.ResFriendCard - 679, // 189: tutorial.ResKv.kv:type_name -> tutorial.ResKv.KvEntry - 481, // 190: tutorial.ResFriendRecommend.List:type_name -> tutorial.ResPlayerSimple - 1, // 191: tutorial.ResFriendIgnore.Code:type_name -> tutorial.RES_CODE - 481, // 192: tutorial.ResFriendList.FriendList:type_name -> tutorial.ResPlayerSimple - 497, // 193: tutorial.ResFriendApply.ApplyList:type_name -> tutorial.ResFriendApplyInfo - 481, // 194: tutorial.ResFriendApplyInfo.Player:type_name -> tutorial.ResPlayerSimple - 486, // 195: tutorial.ResFriendCardMsg.MsgList:type_name -> tutorial.ResFriendCard - 483, // 196: tutorial.ResFriendTimeLine.Log:type_name -> tutorial.ResFriendLog - 481, // 197: tutorial.ResFriendApplyNotify.Player:type_name -> tutorial.ResPlayerSimple - 1, // 198: tutorial.ResApplyFriend.Code:type_name -> tutorial.RES_CODE - 1, // 199: tutorial.ResAgreeFriend.Code:type_name -> tutorial.RES_CODE - 481, // 200: tutorial.ResAgreeFriend.Player:type_name -> tutorial.ResPlayerSimple - 1, // 201: tutorial.ResRefuseFriend.Code:type_name -> tutorial.RES_CODE - 1, // 202: tutorial.ResDelFriend.Code:type_name -> tutorial.RES_CODE - 680, // 203: tutorial.ResRank.RankList:type_name -> tutorial.ResRank.RankListEntry - 681, // 204: tutorial.ResMailList.MailList:type_name -> tutorial.ResMailList.MailListEntry - 437, // 205: tutorial.MailInfo.Items:type_name -> tutorial.ItemInfo - 515, // 206: tutorial.MailNotify.Info:type_name -> tutorial.MailInfo - 1, // 207: tutorial.ResReadMail.Code:type_name -> tutorial.RES_CODE - 1, // 208: tutorial.ResGetMailReward.Code:type_name -> tutorial.RES_CODE - 1, // 209: tutorial.ResDeleteMail.Code:type_name -> tutorial.RES_CODE - 682, // 210: tutorial.ResCharge.SpecialShop:type_name -> tutorial.ResCharge.SpecialShopEntry - 683, // 211: tutorial.ResCharge.ChessShop:type_name -> tutorial.ResCharge.ChessShopEntry - 684, // 212: tutorial.ResCharge.Gift:type_name -> tutorial.ResCharge.GiftEntry - 1, // 213: tutorial.ResFreeShop.Code:type_name -> tutorial.RES_CODE - 1, // 214: tutorial.ResBuyChessShop.Code:type_name -> tutorial.RES_CODE - 685, // 215: tutorial.ReqBuyChessShop2.mChessData:type_name -> tutorial.ReqBuyChessShop2.MChessDataEntry - 1, // 216: tutorial.ResBuyChessShop2.Code:type_name -> tutorial.RES_CODE - 1, // 217: tutorial.ResRefreshChessShop.Code:type_name -> tutorial.RES_CODE - 686, // 218: tutorial.ResEndless.EndlessList:type_name -> tutorial.ResEndless.EndlessListEntry - 437, // 219: tutorial.ResEndlessInfo.Items:type_name -> tutorial.ItemInfo - 1, // 220: tutorial.ResEndlessReward.Code:type_name -> tutorial.RES_CODE - 1, // 221: tutorial.ResPiggyBankReward.Code:type_name -> tutorial.RES_CODE - 1, // 222: tutorial.ResShippingOrder.Code:type_name -> tutorial.RES_CODE - 1, // 223: tutorial.ResChampshipReward.Code:type_name -> tutorial.RES_CODE - 1, // 224: tutorial.ResChampshipRankReward.Code:type_name -> tutorial.RES_CODE - 687, // 225: tutorial.ResChampshipRank.RankList:type_name -> tutorial.ResChampshipRank.RankListEntry - 688, // 226: tutorial.ResChampshipPreRank.RankList:type_name -> tutorial.ResChampshipPreRank.RankListEntry - 689, // 227: tutorial.ResNotifyCard.Card:type_name -> tutorial.ResNotifyCard.CardEntry - 690, // 228: tutorial.ResNotifyCard.Master:type_name -> tutorial.ResNotifyCard.MasterEntry - 1, // 229: tutorial.ResSetFacebookUrl.Code:type_name -> tutorial.RES_CODE - 691, // 230: tutorial.ResMining.Map:type_name -> tutorial.ResMining.MapEntry - 692, // 231: tutorial.ReqMiningTake.Map:type_name -> tutorial.ReqMiningTake.MapEntry - 1, // 232: tutorial.ResMiningTake.Code:type_name -> tutorial.RES_CODE - 1, // 233: tutorial.ResMiningReward.Code:type_name -> tutorial.RES_CODE - 693, // 234: tutorial.ResActRed.Red:type_name -> tutorial.ResActRed.RedEntry - 464, // 235: tutorial.ActivityNotify.Info:type_name -> tutorial.ActivityInfo - 694, // 236: tutorial.ResItem.Item:type_name -> tutorial.ResItem.ItemEntry - 695, // 237: tutorial.ItemNotify.Item:type_name -> tutorial.ItemNotify.ItemEntry - 581, // 238: tutorial.ResGuessColor.Opponent:type_name -> tutorial.opponent - 696, // 239: tutorial.ReqGuessColorTake.Map:type_name -> tutorial.ReqGuessColorTake.MapEntry - 1, // 240: tutorial.ResGuessColorTake.Code:type_name -> tutorial.RES_CODE - 1, // 241: tutorial.ResGuessColorReward.Code:type_name -> tutorial.RES_CODE - 588, // 242: tutorial.ResRace.Opponent:type_name -> tutorial.raceopponent - 1, // 243: tutorial.ResRaceStart.Code:type_name -> tutorial.RES_CODE - 1, // 244: tutorial.ResRaceReward.Code:type_name -> tutorial.RES_CODE - 437, // 245: tutorial.ResPlayroom.Items:type_name -> tutorial.ItemInfo - 599, // 246: tutorial.ResPlayroom.Opponent:type_name -> tutorial.RoomOpponent - 598, // 247: tutorial.ResPlayroom.Friend:type_name -> tutorial.FriendRoom - 697, // 248: tutorial.ResPlayroom.Playroom:type_name -> tutorial.ResPlayroom.PlayroomEntry - 698, // 249: tutorial.ResPlayroom.Mood:type_name -> tutorial.ResPlayroom.MoodEntry - 437, // 250: tutorial.ResPlayroom.LoseItem:type_name -> tutorial.ItemInfo - 437, // 251: tutorial.NotifyPlayroomLose.LoseItem:type_name -> tutorial.ItemInfo - 699, // 252: tutorial.NotifyPlayroomMood.Mood:type_name -> tutorial.NotifyPlayroomMood.MoodEntry - 700, // 253: tutorial.ResPlayroomInfo.Playroom:type_name -> tutorial.ResPlayroomInfo.PlayroomEntry - 701, // 254: tutorial.ResPlayroomInfo.Items:type_name -> tutorial.ResPlayroomInfo.ItemsEntry - 702, // 255: tutorial.ResPlayroomInfo.flip:type_name -> tutorial.ResPlayroomInfo.FlipEntry - 1, // 256: tutorial.ResPlayroomFlip.Code:type_name -> tutorial.RES_CODE - 1, // 257: tutorial.ResPlayroomGame.Code:type_name -> tutorial.RES_CODE - 703, // 258: tutorial.ResPlayroomGame.Items:type_name -> tutorial.ResPlayroomGame.ItemsEntry - 1, // 259: tutorial.ResPlayroomInteract.Code:type_name -> tutorial.RES_CODE - 704, // 260: tutorial.ReqPlayroomSetRoom.Playroom:type_name -> tutorial.ReqPlayroomSetRoom.PlayroomEntry - 1, // 261: tutorial.ResPlayroomSetRoom.Code:type_name -> tutorial.RES_CODE - 1, // 262: tutorial.ResPlayroomSelectReward.Code:type_name -> tutorial.RES_CODE - 1, // 263: tutorial.ResPlayroomLose.Code:type_name -> tutorial.RES_CODE - 1, // 264: tutorial.ResPlayroomWork.Code:type_name -> tutorial.RES_CODE - 1, // 265: tutorial.ResPlayroomRest.Code:type_name -> tutorial.RES_CODE - 1, // 266: tutorial.ResPlayroomDraw.Code:type_name -> tutorial.RES_CODE - 1, // 267: tutorial.ResPlayroomChip.Code:type_name -> tutorial.RES_CODE - 440, // 268: tutorial.ResDailyTask.WeekRewardEntry.value:type_name -> tutorial.DailyWeek - 441, // 269: tutorial.ResDailyTask.DailyTaskEntry.value:type_name -> tutorial.DailyTask - 472, // 270: tutorial.ResLimitEvent.LimitEventListEntry.value:type_name -> tutorial.LimitEvent - 481, // 271: tutorial.ResRank.RankListEntry.value:type_name -> tutorial.ResPlayerSimple - 515, // 272: tutorial.ResMailList.MailListEntry.value:type_name -> tutorial.MailInfo - 524, // 273: tutorial.ResCharge.SpecialShopEntry.value:type_name -> tutorial.ResSpecialShop - 525, // 274: tutorial.ResCharge.ChessShopEntry.value:type_name -> tutorial.ResChessShop - 536, // 275: tutorial.ResEndless.EndlessListEntry.value:type_name -> tutorial.ResEndlessInfo - 482, // 276: tutorial.ResChampshipRank.RankListEntry.value:type_name -> tutorial.ResPlayerRank - 482, // 277: tutorial.ResChampshipPreRank.RankListEntry.value:type_name -> tutorial.ResPlayerRank - 437, // 278: tutorial.ResPlayroomInfo.ItemsEntry.value:type_name -> tutorial.ItemInfo - 437, // 279: tutorial.ResPlayroomGame.ItemsEntry.value:type_name -> tutorial.ItemInfo - 280, // [280:280] is the sub-list for method output_type - 280, // [280:280] is the sub-list for method input_type - 280, // [280:280] is the sub-list for extension type_name - 280, // [280:280] is the sub-list for extension extendee - 0, // [0:280] is the sub-list for field type_name + 634, // 16: tutorial.ReqPlayroomOutline.mChessData:type_name -> tutorial.ReqPlayroomOutline.MChessDataEntry + 1, // 17: tutorial.ResPlayroomOutline.code:type_name -> tutorial.RES_CODE + 40, // 18: tutorial.ChessBag.ChessBagGrids:type_name -> tutorial.ChessBagGrid + 635, // 19: tutorial.ReqPutChessInBag.mChessData:type_name -> tutorial.ReqPutChessInBag.MChessDataEntry + 1, // 20: tutorial.ResPutChessInBag.code:type_name -> tutorial.RES_CODE + 636, // 21: tutorial.ReqTakeChessOutBag.mChessData:type_name -> tutorial.ReqTakeChessOutBag.MChessDataEntry + 1, // 22: tutorial.ResTakeChessOutBag.code:type_name -> tutorial.RES_CODE + 1, // 23: tutorial.ResBuyChessBagGrid.code:type_name -> tutorial.RES_CODE + 637, // 24: tutorial.ResPlayerGiftData.mGiftData:type_name -> tutorial.ResPlayerGiftData.MGiftDataEntry + 638, // 25: tutorial.UpdatePlayerGiftData.mGiftData:type_name -> tutorial.UpdatePlayerGiftData.MGiftDataEntry + 639, // 26: tutorial.ResPlayerOrderData.mOrderData:type_name -> tutorial.ResPlayerOrderData.MOrderDataEntry + 640, // 27: tutorial.UpdatePlayerOrderData.mOrderData:type_name -> tutorial.UpdatePlayerOrderData.MOrderDataEntry + 641, // 28: tutorial.ResChessColorData.mChessColorData:type_name -> tutorial.ResChessColorData.MChessColorDataEntry + 642, // 29: tutorial.UpdateChessColorData.mChessColorData:type_name -> tutorial.UpdateChessColorData.MChessColorDataEntry + 643, // 30: tutorial.ResEmitMergeMap.mEmitMergeData:type_name -> tutorial.ResEmitMergeMap.MEmitMergeDataEntry + 644, // 31: tutorial.UpdateEmitMergeMap.mEmitMergeData:type_name -> tutorial.UpdateEmitMergeMap.MEmitMergeDataEntry + 645, // 32: tutorial.ResEmitCountMap.mEmitCountData:type_name -> tutorial.ResEmitCountMap.MEmitCountDataEntry + 646, // 33: tutorial.UpdateEmitCountMap.mEmitCountData:type_name -> tutorial.UpdateEmitCountMap.MEmitCountDataEntry + 647, // 34: tutorial.ResEmitCDStartData.mEmitCDData:type_name -> tutorial.ResEmitCDStartData.MEmitCDDataEntry + 648, // 35: tutorial.NotifyInitEmitCDTimeData.mEmitCDData:type_name -> tutorial.NotifyInitEmitCDTimeData.MEmitCDDataEntry + 649, // 36: tutorial.NotifyEmitCDTimeEndData.mEmitCDData:type_name -> tutorial.NotifyEmitCDTimeEndData.MEmitCDDataEntry + 650, // 37: tutorial.ResDecorateData.mDecorateData:type_name -> tutorial.ResDecorateData.MDecorateDataEntry + 651, // 38: tutorial.UpdateDecorateData.mDecorateData:type_name -> tutorial.UpdateDecorateData.MDecorateDataEntry + 652, // 39: tutorial.ResShopData.mShopTimeBuyData:type_name -> tutorial.ResShopData.MShopTimeBuyDataEntry + 653, // 40: tutorial.ResShopData.mShopSaleBuyData:type_name -> tutorial.ResShopData.MShopSaleBuyDataEntry + 654, // 41: tutorial.ResShopData.mPackBuyData:type_name -> tutorial.ResShopData.MPackBuyDataEntry + 655, // 42: tutorial.ResShopData.mSpecialOfferBuyData:type_name -> tutorial.ResShopData.MSpecialOfferBuyDataEntry + 656, // 43: tutorial.ResShopData.mUISpecialOfferBuyData:type_name -> tutorial.ResShopData.MUISpecialOfferBuyDataEntry + 657, // 44: tutorial.ResShopData.mFreePackBuyData:type_name -> tutorial.ResShopData.MFreePackBuyDataEntry + 658, // 45: tutorial.ResShopData.mDiamondFirstBuyData:type_name -> tutorial.ResShopData.MDiamondFirstBuyDataEntry + 659, // 46: tutorial.NotifyShopStatusChange.mShopTimeBuyData:type_name -> tutorial.NotifyShopStatusChange.MShopTimeBuyDataEntry + 660, // 47: tutorial.ResShopBuy.mShopTimeBuyData:type_name -> tutorial.ResShopBuy.MShopTimeBuyDataEntry + 661, // 48: tutorial.ReqRenewItemBuyCnt.mShopData:type_name -> tutorial.ReqRenewItemBuyCnt.MShopDataEntry + 662, // 49: tutorial.ResRenewItemBuyCnt.mShopTimeBuyData:type_name -> tutorial.ResRenewItemBuyCnt.MShopTimeBuyDataEntry + 91, // 50: tutorial.ResBriefEmailData.mEmailList:type_name -> tutorial.BriefEmailStruct + 91, // 51: tutorial.NotifyNewBriefEmailData.mEmailList:type_name -> tutorial.BriefEmailStruct + 101, // 52: tutorial.NotifyLimitedTimeActiveData.mActiveList:type_name -> tutorial.LimitedTimeActiveStruct + 102, // 53: tutorial.NotifyLimitedTimeActiveEnd.mActiveList:type_name -> tutorial.LimitedTimeEndStruct + 156, // 54: tutorial.CategoryIllustratedData.Items:type_name -> tutorial.SingleIllustratedItem + 157, // 55: tutorial.ResIllustratedInfo.Datas:type_name -> tutorial.CategoryIllustratedData + 663, // 56: tutorial.ResKeyValueData.KeyValues:type_name -> tutorial.ResKeyValueData.KeyValuesEntry + 664, // 57: tutorial.UpdateKeyValueData.KeyValues:type_name -> tutorial.UpdateKeyValueData.KeyValuesEntry + 205, // 58: tutorial.ResChampshipData.GroupRankDataList:type_name -> tutorial.ChampshipsPlayerInfo + 205, // 59: tutorial.NotifyNewChampshipRank.GroupRankDataList:type_name -> tutorial.ChampshipsPlayerInfo + 205, // 60: tutorial.NotifyUpdateChampshipRank.GroupRankDataList:type_name -> tutorial.ChampshipsPlayerInfo + 205, // 61: tutorial.ResChampshipAddScore.GroupRankDataList:type_name -> tutorial.ChampshipsPlayerInfo + 205, // 62: tutorial.ResChampshipAddTime.GroupRankDataList:type_name -> tutorial.ChampshipsPlayerInfo + 219, // 63: tutorial.ResPlayerPayData.PlayerPayData:type_name -> tutorial.PlayerPayItem + 665, // 64: tutorial.ResAdPackData.PackData:type_name -> tutorial.ResAdPackData.PackDataEntry + 666, // 65: tutorial.NotifyAdPackData.PackData:type_name -> tutorial.NotifyAdPackData.PackDataEntry + 667, // 66: tutorial.ResWatchAdPack.PackData:type_name -> tutorial.ResWatchAdPack.PackDataEntry + 264, // 67: tutorial.ResFriendData.FriendInfos:type_name -> tutorial.FriendInfo + 264, // 68: tutorial.AddFriendData.Finfo:type_name -> tutorial.FriendInfo + 264, // 69: tutorial.ResWillPlayerDetail.PlayerInfos:type_name -> tutorial.FriendInfo + 267, // 70: tutorial.NotifyAddFriendReq.ReqInfo:type_name -> tutorial.AddFriendData + 267, // 71: tutorial.ResAllAddFriendInfo.FriendInfos:type_name -> tutorial.AddFriendData + 264, // 72: tutorial.ResAgreeFriendReq.data:type_name -> tutorial.FriendInfo + 264, // 73: tutorial.NotifyAgreeAddFriend.data:type_name -> tutorial.FriendInfo + 264, // 74: tutorial.NotifySuccessInviteAddFriend.data:type_name -> tutorial.FriendInfo + 264, // 75: tutorial.NotifySuccessFBAddFriend.data:type_name -> tutorial.FriendInfo + 264, // 76: tutorial.ResRecommendFriendList.PlayerInfos:type_name -> tutorial.FriendInfo + 294, // 77: tutorial.ResExchangeCardBoxData.ExchangeCardItems:type_name -> tutorial.ExchangeCardItem + 294, // 78: tutorial.ResDonateFriendCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem + 294, // 79: tutorial.NotifyDonateFriendCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem + 294, // 80: tutorial.ReqGetDonateCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem + 294, // 81: tutorial.NotifyGetDonateCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem + 294, // 82: tutorial.ResGetDonateCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem + 294, // 83: tutorial.ReqRefuseExchange.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem + 294, // 84: tutorial.ResRefuseExchange.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem + 294, // 85: tutorial.NOtifyRefuseExchange.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem + 294, // 86: tutorial.ResExchangeCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem + 294, // 87: tutorial.NotifyExchangeTimeOut.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem + 294, // 88: tutorial.NotifyExchangeCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem + 294, // 89: tutorial.ReqReceiptCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem + 294, // 90: tutorial.ResReceiptCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem + 294, // 91: tutorial.NotifyReceiptCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem + 294, // 92: tutorial.ReqCompleteExchangeCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem + 294, // 93: tutorial.ResCompleteExchangeCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem + 294, // 94: tutorial.NotifyCompleteExchangeCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem + 294, // 95: tutorial.ReqGetExchangeCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem + 294, // 96: tutorial.NotifyGetExchangeCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem + 294, // 97: tutorial.ResGetExchangeCard.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem + 294, // 98: tutorial.NotifyDeleteGoldCardSwap.mExchangeCardItems:type_name -> tutorial.ExchangeCardItem + 294, // 99: tutorial.NotifyRequestTimeOut.mExchangeCardItem:type_name -> tutorial.ExchangeCardItem + 294, // 100: tutorial.ResRequestCard.ExchangeCardItems:type_name -> tutorial.ExchangeCardItem + 294, // 101: tutorial.NotifyRequestCard.ExchangeCardItems:type_name -> tutorial.ExchangeCardItem + 294, // 102: tutorial.ReqCompleteRequestCard.ExchangeCardItems:type_name -> tutorial.ExchangeCardItem + 294, // 103: tutorial.ResCompleteRequestCard.ExchangeCardItems:type_name -> tutorial.ExchangeCardItem + 294, // 104: tutorial.NotifyCompleteRequestCard.ExchangeCardItems:type_name -> tutorial.ExchangeCardItem + 294, // 105: tutorial.ReqRefuseRequestCard.ExchangeCardItems:type_name -> tutorial.ExchangeCardItem + 294, // 106: tutorial.ResRefuseRequestCard.ExchangeCardItems:type_name -> tutorial.ExchangeCardItem + 294, // 107: tutorial.NotifyRefuseRequestCard.ExchangeCardItems:type_name -> tutorial.ExchangeCardItem + 294, // 108: tutorial.ReqGetRequestCard.ExchangeCardItems:type_name -> tutorial.ExchangeCardItem + 294, // 109: tutorial.ResGetRequestCard.ExchangeCardItems:type_name -> tutorial.ExchangeCardItem + 264, // 110: tutorial.FriendEventData.MFriendInfo:type_name -> tutorial.FriendInfo + 343, // 111: tutorial.ResFriendEventData.MFriendEventData:type_name -> tutorial.FriendEventData + 343, // 112: tutorial.NotifyNewFriendEvent.NewEvent:type_name -> tutorial.FriendEventData + 259, // 113: tutorial.PetHomeInterActST.BriefProfile:type_name -> tutorial.ResPlayerBriefProfileData + 668, // 114: tutorial.ResPetHomeData.SelectDecorateMap:type_name -> tutorial.ResPetHomeData.SelectDecorateMapEntry + 669, // 115: tutorial.ReqSaveSelectDecorate.SelectDecorateMap:type_name -> tutorial.ReqSaveSelectDecorate.SelectDecorateMapEntry + 670, // 116: tutorial.ResSaveSelectDecorate.SelectDecorateMap:type_name -> tutorial.ResSaveSelectDecorate.SelectDecorateMapEntry + 259, // 117: tutorial.ResOpenOtherPetHome.BriefProfile:type_name -> tutorial.ResPlayerBriefProfileData + 671, // 118: tutorial.ResOpenOtherPetHome.SelectDecorateMap:type_name -> tutorial.ResOpenOtherPetHome.SelectDecorateMapEntry + 351, // 119: tutorial.ResPetHomeInterActST.mPetHomeInterActSTs:type_name -> tutorial.PetHomeInterActST + 259, // 120: tutorial.ResShiftVisitPet.BriefProfile:type_name -> tutorial.ResPlayerBriefProfileData + 672, // 121: tutorial.ResShiftVisitPet.SelectDecorateMap:type_name -> tutorial.ResShiftVisitPet.SelectDecorateMapEntry + 374, // 122: tutorial.UseItemRequest.items:type_name -> tutorial.Item + 373, // 123: tutorial.UseItemRequest.price:type_name -> tutorial.IntPack + 673, // 124: tutorial.UseItemRequest.attrs:type_name -> tutorial.UseItemRequest.AttrsEntry + 3, // 125: tutorial.UseItemResponse.code:type_name -> tutorial.UseItemResponse.CODE + 374, // 126: tutorial.UseItemResponse.items:type_name -> tutorial.Item + 373, // 127: tutorial.UseItemResponse.price:type_name -> tutorial.IntPack + 674, // 128: tutorial.UseItemResponse.attrs:type_name -> tutorial.UseItemResponse.AttrsEntry + 1, // 129: tutorial.ResSetEnergyMul.ResultCode:type_name -> tutorial.RES_CODE + 456, // 130: tutorial.UserInfo.AvatarList:type_name -> tutorial.AvatarInfo + 452, // 131: tutorial.UserInfo.FaceList:type_name -> tutorial.FaceInfo + 1, // 132: tutorial.ResSetName.ResultCode:type_name -> tutorial.RES_CODE + 1, // 133: tutorial.ResBuyEnergy.Code:type_name -> tutorial.RES_CODE + 388, // 134: tutorial.Handbook.Handbooks:type_name -> tutorial.HandbookInfo + 1, // 135: tutorial.ResGetHandbookReward.Code:type_name -> tutorial.RES_CODE + 675, // 136: tutorial.ReqRewardOrder.mChessData:type_name -> tutorial.ReqRewardOrder.MChessDataEntry + 1, // 137: tutorial.ResRewardOrder.Code:type_name -> tutorial.RES_CODE + 393, // 138: tutorial.ResOrderList.OrderList:type_name -> tutorial.Order + 1, // 139: tutorial.ResDecorate.Code:type_name -> tutorial.RES_CODE + 1, // 140: tutorial.ResDecorateAll.Code:type_name -> tutorial.RES_CODE + 401, // 141: tutorial.ResCardInfo.CardList:type_name -> tutorial.Card + 676, // 142: tutorial.ResCardInfo.AllCard:type_name -> tutorial.ResCardInfo.AllCardEntry + 1, // 143: tutorial.ResMasterCard.Code:type_name -> tutorial.RES_CODE + 1, // 144: tutorial.ResCardCollectReward.Code:type_name -> tutorial.RES_CODE + 1, // 145: tutorial.ResExStarReward.Code:type_name -> tutorial.RES_CODE + 1, // 146: tutorial.ResAllCollectReward.Code:type_name -> tutorial.RES_CODE + 1, // 147: tutorial.ResCardGive.Code:type_name -> tutorial.RES_CODE + 1, // 148: tutorial.ResAgreeCardGive.Code:type_name -> tutorial.RES_CODE + 1, // 149: tutorial.ResRefuseCardGive.Code:type_name -> tutorial.RES_CODE + 1, // 150: tutorial.ResCardSend.Code:type_name -> tutorial.RES_CODE + 1, // 151: tutorial.ResCardExchange.Code:type_name -> tutorial.RES_CODE + 1, // 152: tutorial.ResSelectCardExchange.Code:type_name -> tutorial.RES_CODE + 1, // 153: tutorial.ResAgreeCardExchange.Code:type_name -> tutorial.RES_CODE + 1, // 154: tutorial.ResRefuseCardSelect.Code:type_name -> tutorial.RES_CODE + 1, // 155: tutorial.ResRefuseCardExchange.Code:type_name -> tutorial.RES_CODE + 1, // 156: tutorial.ResGetFriendCard.Code:type_name -> tutorial.RES_CODE + 1, // 157: tutorial.ResGuideReward.Code:type_name -> tutorial.RES_CODE + 677, // 158: tutorial.ResGuildInfo.Reward:type_name -> tutorial.ResGuildInfo.RewardEntry + 439, // 159: tutorial.ResItemPop.Items:type_name -> tutorial.ItemInfo + 440, // 160: tutorial.ResItemPop.CardPacks:type_name -> tutorial.CardPack + 678, // 161: tutorial.ResDailyTask.WeekReward:type_name -> tutorial.ResDailyTask.WeekRewardEntry + 679, // 162: tutorial.ResDailyTask.DailyTask:type_name -> tutorial.ResDailyTask.DailyTaskEntry + 439, // 163: tutorial.DailyWeek.Items:type_name -> tutorial.ItemInfo + 444, // 164: tutorial.DailyTask.Progress:type_name -> tutorial.QuestProgress + 439, // 165: tutorial.DailyTask.Items:type_name -> tutorial.ItemInfo + 1, // 166: tutorial.ResGetDailyTaskReward.Code:type_name -> tutorial.RES_CODE + 1, // 167: tutorial.ResGetDailyWeekReward.Code:type_name -> tutorial.RES_CODE + 1, // 168: tutorial.ResDailyUnlock.Code:type_name -> tutorial.RES_CODE + 452, // 169: tutorial.ResFaceInfo.FaceList:type_name -> tutorial.FaceInfo + 1, // 170: tutorial.ResSetFace.Code:type_name -> tutorial.RES_CODE + 456, // 171: tutorial.ResAvatarInfo.AvatarList:type_name -> tutorial.AvatarInfo + 1, // 172: tutorial.ResSetAvatar.Code:type_name -> tutorial.RES_CODE + 460, // 173: tutorial.ResSevenLogin.WeekReward:type_name -> tutorial.SevenLoginReward + 460, // 174: tutorial.ResSevenLogin.MonthReward:type_name -> tutorial.SevenLoginReward + 439, // 175: tutorial.SevenLoginReward.Item1:type_name -> tutorial.ItemInfo + 439, // 176: tutorial.SevenLoginReward.Item2:type_name -> tutorial.ItemInfo + 439, // 177: tutorial.SevenLoginReward.Item3:type_name -> tutorial.ItemInfo + 1, // 178: tutorial.ResGetSevenLoginReward.Code:type_name -> tutorial.RES_CODE + 1, // 179: tutorial.ResGetMonthLoginReward.Code:type_name -> tutorial.RES_CODE + 466, // 180: tutorial.ResActivity.ActiveList:type_name -> tutorial.ActivityInfo + 680, // 181: tutorial.ResLimitEvent.LimitEventList:type_name -> tutorial.ResLimitEvent.LimitEventListEntry + 681, // 182: tutorial.ResLimitEventProgress.ProgressReward:type_name -> tutorial.ResLimitEventProgress.ProgressRewardEntry + 1, // 183: tutorial.ResLimitEventReward.Code:type_name -> tutorial.RES_CODE + 1, // 184: tutorial.ResSelectLimitEvent.Code:type_name -> tutorial.RES_CODE + 1, // 185: tutorial.ResLimitSenceReward.Code:type_name -> tutorial.RES_CODE + 1, // 186: tutorial.ResFastProduceReward.Code:type_name -> tutorial.RES_CODE + 483, // 187: tutorial.ResSearchPlayer.List:type_name -> tutorial.ResPlayerSimple + 483, // 188: tutorial.ResFriendLog.Player:type_name -> tutorial.ResPlayerSimple + 485, // 189: tutorial.NotifyFriendLog.info:type_name -> tutorial.ResFriendLog + 488, // 190: tutorial.NotifyFriendCard.Info:type_name -> tutorial.ResFriendCard + 682, // 191: tutorial.ResKv.kv:type_name -> tutorial.ResKv.KvEntry + 483, // 192: tutorial.ResFriendRecommend.List:type_name -> tutorial.ResPlayerSimple + 1, // 193: tutorial.ResFriendIgnore.Code:type_name -> tutorial.RES_CODE + 483, // 194: tutorial.ResFriendList.FriendList:type_name -> tutorial.ResPlayerSimple + 499, // 195: tutorial.ResFriendApply.ApplyList:type_name -> tutorial.ResFriendApplyInfo + 483, // 196: tutorial.ResFriendApplyInfo.Player:type_name -> tutorial.ResPlayerSimple + 488, // 197: tutorial.ResFriendCardMsg.MsgList:type_name -> tutorial.ResFriendCard + 485, // 198: tutorial.ResFriendTimeLine.Log:type_name -> tutorial.ResFriendLog + 483, // 199: tutorial.ResFriendApplyNotify.Player:type_name -> tutorial.ResPlayerSimple + 1, // 200: tutorial.ResApplyFriend.Code:type_name -> tutorial.RES_CODE + 1, // 201: tutorial.ResAgreeFriend.Code:type_name -> tutorial.RES_CODE + 483, // 202: tutorial.ResAgreeFriend.Player:type_name -> tutorial.ResPlayerSimple + 1, // 203: tutorial.ResRefuseFriend.Code:type_name -> tutorial.RES_CODE + 1, // 204: tutorial.ResDelFriend.Code:type_name -> tutorial.RES_CODE + 683, // 205: tutorial.ResRank.RankList:type_name -> tutorial.ResRank.RankListEntry + 684, // 206: tutorial.ResMailList.MailList:type_name -> tutorial.ResMailList.MailListEntry + 439, // 207: tutorial.MailInfo.Items:type_name -> tutorial.ItemInfo + 517, // 208: tutorial.MailNotify.Info:type_name -> tutorial.MailInfo + 1, // 209: tutorial.ResReadMail.Code:type_name -> tutorial.RES_CODE + 1, // 210: tutorial.ResGetMailReward.Code:type_name -> tutorial.RES_CODE + 1, // 211: tutorial.ResDeleteMail.Code:type_name -> tutorial.RES_CODE + 685, // 212: tutorial.ResCharge.SpecialShop:type_name -> tutorial.ResCharge.SpecialShopEntry + 686, // 213: tutorial.ResCharge.ChessShop:type_name -> tutorial.ResCharge.ChessShopEntry + 687, // 214: tutorial.ResCharge.Gift:type_name -> tutorial.ResCharge.GiftEntry + 1, // 215: tutorial.ResFreeShop.Code:type_name -> tutorial.RES_CODE + 1, // 216: tutorial.ResBuyChessShop.Code:type_name -> tutorial.RES_CODE + 688, // 217: tutorial.ReqBuyChessShop2.mChessData:type_name -> tutorial.ReqBuyChessShop2.MChessDataEntry + 1, // 218: tutorial.ResBuyChessShop2.Code:type_name -> tutorial.RES_CODE + 1, // 219: tutorial.ResRefreshChessShop.Code:type_name -> tutorial.RES_CODE + 689, // 220: tutorial.ResEndless.EndlessList:type_name -> tutorial.ResEndless.EndlessListEntry + 439, // 221: tutorial.ResEndlessInfo.Items:type_name -> tutorial.ItemInfo + 1, // 222: tutorial.ResEndlessReward.Code:type_name -> tutorial.RES_CODE + 1, // 223: tutorial.ResPiggyBankReward.Code:type_name -> tutorial.RES_CODE + 1, // 224: tutorial.ResShippingOrder.Code:type_name -> tutorial.RES_CODE + 1, // 225: tutorial.ResChampshipReward.Code:type_name -> tutorial.RES_CODE + 1, // 226: tutorial.ResChampshipRankReward.Code:type_name -> tutorial.RES_CODE + 690, // 227: tutorial.ResChampshipRank.RankList:type_name -> tutorial.ResChampshipRank.RankListEntry + 691, // 228: tutorial.ResChampshipPreRank.RankList:type_name -> tutorial.ResChampshipPreRank.RankListEntry + 692, // 229: tutorial.ResNotifyCard.Card:type_name -> tutorial.ResNotifyCard.CardEntry + 693, // 230: tutorial.ResNotifyCard.Master:type_name -> tutorial.ResNotifyCard.MasterEntry + 1, // 231: tutorial.ResSetFacebookUrl.Code:type_name -> tutorial.RES_CODE + 694, // 232: tutorial.ResMining.Map:type_name -> tutorial.ResMining.MapEntry + 695, // 233: tutorial.ReqMiningTake.Map:type_name -> tutorial.ReqMiningTake.MapEntry + 1, // 234: tutorial.ResMiningTake.Code:type_name -> tutorial.RES_CODE + 1, // 235: tutorial.ResMiningReward.Code:type_name -> tutorial.RES_CODE + 696, // 236: tutorial.ResActRed.Red:type_name -> tutorial.ResActRed.RedEntry + 466, // 237: tutorial.ActivityNotify.Info:type_name -> tutorial.ActivityInfo + 697, // 238: tutorial.ResItem.Item:type_name -> tutorial.ResItem.ItemEntry + 698, // 239: tutorial.ItemNotify.Item:type_name -> tutorial.ItemNotify.ItemEntry + 583, // 240: tutorial.ResGuessColor.Opponent:type_name -> tutorial.opponent + 699, // 241: tutorial.ReqGuessColorTake.Map:type_name -> tutorial.ReqGuessColorTake.MapEntry + 1, // 242: tutorial.ResGuessColorTake.Code:type_name -> tutorial.RES_CODE + 1, // 243: tutorial.ResGuessColorReward.Code:type_name -> tutorial.RES_CODE + 590, // 244: tutorial.ResRace.Opponent:type_name -> tutorial.raceopponent + 1, // 245: tutorial.ResRaceStart.Code:type_name -> tutorial.RES_CODE + 1, // 246: tutorial.ResRaceReward.Code:type_name -> tutorial.RES_CODE + 439, // 247: tutorial.ResPlayroom.Items:type_name -> tutorial.ItemInfo + 601, // 248: tutorial.ResPlayroom.Opponent:type_name -> tutorial.RoomOpponent + 600, // 249: tutorial.ResPlayroom.Friend:type_name -> tutorial.FriendRoom + 700, // 250: tutorial.ResPlayroom.Playroom:type_name -> tutorial.ResPlayroom.PlayroomEntry + 701, // 251: tutorial.ResPlayroom.Mood:type_name -> tutorial.ResPlayroom.MoodEntry + 439, // 252: tutorial.ResPlayroom.LoseItem:type_name -> tutorial.ItemInfo + 439, // 253: tutorial.NotifyPlayroomLose.LoseItem:type_name -> tutorial.ItemInfo + 702, // 254: tutorial.NotifyPlayroomMood.Mood:type_name -> tutorial.NotifyPlayroomMood.MoodEntry + 703, // 255: tutorial.ResPlayroomInfo.Playroom:type_name -> tutorial.ResPlayroomInfo.PlayroomEntry + 704, // 256: tutorial.ResPlayroomInfo.Items:type_name -> tutorial.ResPlayroomInfo.ItemsEntry + 705, // 257: tutorial.ResPlayroomInfo.flip:type_name -> tutorial.ResPlayroomInfo.FlipEntry + 1, // 258: tutorial.ResPlayroomFlip.Code:type_name -> tutorial.RES_CODE + 1, // 259: tutorial.ResPlayroomGame.Code:type_name -> tutorial.RES_CODE + 706, // 260: tutorial.ResPlayroomGame.Items:type_name -> tutorial.ResPlayroomGame.ItemsEntry + 1, // 261: tutorial.ResPlayroomInteract.Code:type_name -> tutorial.RES_CODE + 707, // 262: tutorial.ReqPlayroomSetRoom.Playroom:type_name -> tutorial.ReqPlayroomSetRoom.PlayroomEntry + 1, // 263: tutorial.ResPlayroomSetRoom.Code:type_name -> tutorial.RES_CODE + 1, // 264: tutorial.ResPlayroomSelectReward.Code:type_name -> tutorial.RES_CODE + 1, // 265: tutorial.ResPlayroomLose.Code:type_name -> tutorial.RES_CODE + 1, // 266: tutorial.ResPlayroomWork.Code:type_name -> tutorial.RES_CODE + 1, // 267: tutorial.ResPlayroomRest.Code:type_name -> tutorial.RES_CODE + 1, // 268: tutorial.ResPlayroomDraw.Code:type_name -> tutorial.RES_CODE + 1, // 269: tutorial.ResPlayroomChip.Code:type_name -> tutorial.RES_CODE + 442, // 270: tutorial.ResDailyTask.WeekRewardEntry.value:type_name -> tutorial.DailyWeek + 443, // 271: tutorial.ResDailyTask.DailyTaskEntry.value:type_name -> tutorial.DailyTask + 474, // 272: tutorial.ResLimitEvent.LimitEventListEntry.value:type_name -> tutorial.LimitEvent + 483, // 273: tutorial.ResRank.RankListEntry.value:type_name -> tutorial.ResPlayerSimple + 517, // 274: tutorial.ResMailList.MailListEntry.value:type_name -> tutorial.MailInfo + 526, // 275: tutorial.ResCharge.SpecialShopEntry.value:type_name -> tutorial.ResSpecialShop + 527, // 276: tutorial.ResCharge.ChessShopEntry.value:type_name -> tutorial.ResChessShop + 538, // 277: tutorial.ResEndless.EndlessListEntry.value:type_name -> tutorial.ResEndlessInfo + 484, // 278: tutorial.ResChampshipRank.RankListEntry.value:type_name -> tutorial.ResPlayerRank + 484, // 279: tutorial.ResChampshipPreRank.RankListEntry.value:type_name -> tutorial.ResPlayerRank + 439, // 280: tutorial.ResPlayroomInfo.ItemsEntry.value:type_name -> tutorial.ItemInfo + 439, // 281: tutorial.ResPlayroomGame.ItemsEntry.value:type_name -> tutorial.ItemInfo + 282, // [282:282] is the sub-list for method output_type + 282, // [282:282] is the sub-list for method input_type + 282, // [282:282] is the sub-list for extension type_name + 282, // [282:282] is the sub-list for extension extendee + 0, // [0:282] is the sub-list for field type_name } func init() { file_Gameapi_proto_init() } @@ -40653,7 +40830,7 @@ func file_Gameapi_proto_init() { GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_Gameapi_proto_rawDesc, NumEnums: 4, - NumMessages: 701, + NumMessages: 704, NumExtensions: 0, NumServices: 0, },