diff --git a/src/server/game/Player.go b/src/server/game/Player.go index c3966088..bfaf351b 100644 --- a/src/server/game/Player.go +++ b/src/server/game/Player.go @@ -152,6 +152,7 @@ func (p *Player) ProcessTrigger() { DailyTaskMod := p.PlayMod.getDailyTaskMod() MailMod := p.PlayMod.getMailMod() PlayroomMod := p.PlayMod.getPlayroomMod() + IsPlayroomBack := false IsMailBack := false for _, tr := range p.Trigger { if DailyTaskMod.Trigger(tr) { @@ -160,7 +161,9 @@ func (p *Player) ProcessTrigger() { if p.MailTrigger(tr) { IsMailBack = true } - PlayroomMod.QuestTrigger(tr) + if PlayroomMod.QuestTrigger(tr) { + IsPlayroomBack = true + } } if IsDailyBack { @@ -169,6 +172,9 @@ func (p *Player) ProcessTrigger() { if IsMailBack { p.PushClientRes(MailMod.BackData()) } + if IsPlayroomBack { + p.NotifyPlayroomTask() + } p.Trigger = make([]*quest.Trigger, 0) } diff --git a/src/server/game/PlayerBack.go b/src/server/game/PlayerBack.go index cb5d9101..e544801b 100644 --- a/src/server/game/PlayerBack.go +++ b/src/server/game/PlayerBack.go @@ -6,6 +6,14 @@ import ( proto "server/msg" ) +func (p *Player) NotifyPlayroomTask() *proto.NotifyPlayroomTask { + PlayroomMod := p.PlayMod.getPlayroomMod() + return &proto.NotifyPlayroomTask{ + DailyTask: PlayroomMod.BackDataTask(), + DailyTaskReward: GoUtil.IntToInt32(PlayroomMod.DailyTaskReward), + } +} + func PlayroomBackData(p *Player) { r := &proto.ResPlayroom{} PlayroomMod := p.PlayMod.getPlayroomMod() diff --git a/src/server/msg/Gameapi.pb.go b/src/server/msg/Gameapi.pb.go index cd824eb5..23d7bedf 100644 --- a/src/server/msg/Gameapi.pb.go +++ b/src/server/msg/Gameapi.pb.go @@ -18610,6 +18610,58 @@ func (x *ResPlayroom) GetDailyTaskReward() []int32 { return nil } +type NotifyPlayroomTask struct { + state protoimpl.MessageState `protogen:"open.v1"` + DailyTask map[int32]*DailyTask `protobuf:"bytes,1,rep,name=DailyTask,proto3" json:"DailyTask,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` // 每日任务 + DailyTaskReward []int32 `protobuf:"varint,2,rep,packed,name=DailyTaskReward,proto3" json:"DailyTaskReward,omitempty"` // 任务大奖励 + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *NotifyPlayroomTask) Reset() { + *x = NotifyPlayroomTask{} + mi := &file_proto_Gameapi_proto_msgTypes[327] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *NotifyPlayroomTask) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*NotifyPlayroomTask) ProtoMessage() {} + +func (x *NotifyPlayroomTask) ProtoReflect() protoreflect.Message { + mi := &file_proto_Gameapi_proto_msgTypes[327] + 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 NotifyPlayroomTask.ProtoReflect.Descriptor instead. +func (*NotifyPlayroomTask) Descriptor() ([]byte, []int) { + return file_proto_Gameapi_proto_rawDescGZIP(), []int{327} +} + +func (x *NotifyPlayroomTask) GetDailyTask() map[int32]*DailyTask { + if x != nil { + return x.DailyTask + } + return nil +} + +func (x *NotifyPlayroomTask) GetDailyTaskReward() []int32 { + if x != nil { + return x.DailyTaskReward + } + return nil +} + // 领取任务奖励 type ReqPlayroomTask struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -18620,7 +18672,7 @@ type ReqPlayroomTask struct { func (x *ReqPlayroomTask) Reset() { *x = ReqPlayroomTask{} - mi := &file_proto_Gameapi_proto_msgTypes[327] + mi := &file_proto_Gameapi_proto_msgTypes[328] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18632,7 +18684,7 @@ func (x *ReqPlayroomTask) String() string { func (*ReqPlayroomTask) ProtoMessage() {} func (x *ReqPlayroomTask) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[327] + mi := &file_proto_Gameapi_proto_msgTypes[328] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18645,7 +18697,7 @@ func (x *ReqPlayroomTask) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomTask.ProtoReflect.Descriptor instead. func (*ReqPlayroomTask) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{327} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{328} } func (x *ReqPlayroomTask) GetId() int32 { @@ -18666,7 +18718,7 @@ type ResPlayroomTask struct { func (x *ResPlayroomTask) Reset() { *x = ResPlayroomTask{} - mi := &file_proto_Gameapi_proto_msgTypes[328] + mi := &file_proto_Gameapi_proto_msgTypes[329] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18678,7 +18730,7 @@ func (x *ResPlayroomTask) String() string { func (*ResPlayroomTask) ProtoMessage() {} func (x *ResPlayroomTask) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[328] + mi := &file_proto_Gameapi_proto_msgTypes[329] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18691,7 +18743,7 @@ func (x *ResPlayroomTask) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomTask.ProtoReflect.Descriptor instead. func (*ResPlayroomTask) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{328} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{329} } func (x *ResPlayroomTask) GetCode() RES_CODE { @@ -18725,7 +18777,7 @@ type ReqPlayroomTaskReward struct { func (x *ReqPlayroomTaskReward) Reset() { *x = ReqPlayroomTaskReward{} - mi := &file_proto_Gameapi_proto_msgTypes[329] + mi := &file_proto_Gameapi_proto_msgTypes[330] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18737,7 +18789,7 @@ func (x *ReqPlayroomTaskReward) String() string { func (*ReqPlayroomTaskReward) ProtoMessage() {} func (x *ReqPlayroomTaskReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[329] + mi := &file_proto_Gameapi_proto_msgTypes[330] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18750,7 +18802,7 @@ func (x *ReqPlayroomTaskReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomTaskReward.ProtoReflect.Descriptor instead. func (*ReqPlayroomTaskReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{329} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{330} } func (x *ReqPlayroomTaskReward) GetType() int32 { @@ -18772,7 +18824,7 @@ type ResPlayroomTaskReward struct { func (x *ResPlayroomTaskReward) Reset() { *x = ResPlayroomTaskReward{} - mi := &file_proto_Gameapi_proto_msgTypes[330] + mi := &file_proto_Gameapi_proto_msgTypes[331] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18784,7 +18836,7 @@ func (x *ResPlayroomTaskReward) String() string { func (*ResPlayroomTaskReward) ProtoMessage() {} func (x *ResPlayroomTaskReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[330] + mi := &file_proto_Gameapi_proto_msgTypes[331] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18797,7 +18849,7 @@ func (x *ResPlayroomTaskReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomTaskReward.ProtoReflect.Descriptor instead. func (*ResPlayroomTaskReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{330} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{331} } func (x *ResPlayroomTaskReward) GetCode() RES_CODE { @@ -18837,7 +18889,7 @@ type ReqPlayroomUnlock struct { func (x *ReqPlayroomUnlock) Reset() { *x = ReqPlayroomUnlock{} - mi := &file_proto_Gameapi_proto_msgTypes[331] + mi := &file_proto_Gameapi_proto_msgTypes[332] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18849,7 +18901,7 @@ func (x *ReqPlayroomUnlock) String() string { func (*ReqPlayroomUnlock) ProtoMessage() {} func (x *ReqPlayroomUnlock) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[331] + mi := &file_proto_Gameapi_proto_msgTypes[332] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18862,7 +18914,7 @@ func (x *ReqPlayroomUnlock) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomUnlock.ProtoReflect.Descriptor instead. func (*ReqPlayroomUnlock) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{331} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{332} } func (x *ReqPlayroomUnlock) GetId() int32 { @@ -18883,7 +18935,7 @@ type ResPlayroomUnlock struct { func (x *ResPlayroomUnlock) Reset() { *x = ResPlayroomUnlock{} - mi := &file_proto_Gameapi_proto_msgTypes[332] + mi := &file_proto_Gameapi_proto_msgTypes[333] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18895,7 +18947,7 @@ func (x *ResPlayroomUnlock) String() string { func (*ResPlayroomUnlock) ProtoMessage() {} func (x *ResPlayroomUnlock) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[332] + mi := &file_proto_Gameapi_proto_msgTypes[333] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18908,7 +18960,7 @@ func (x *ResPlayroomUnlock) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomUnlock.ProtoReflect.Descriptor instead. func (*ResPlayroomUnlock) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{332} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{333} } func (x *ResPlayroomUnlock) GetCode() RES_CODE { @@ -18941,7 +18993,7 @@ type ReqPlayroomUpvote struct { func (x *ReqPlayroomUpvote) Reset() { *x = ReqPlayroomUpvote{} - mi := &file_proto_Gameapi_proto_msgTypes[333] + mi := &file_proto_Gameapi_proto_msgTypes[334] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18953,7 +19005,7 @@ func (x *ReqPlayroomUpvote) String() string { func (*ReqPlayroomUpvote) ProtoMessage() {} func (x *ReqPlayroomUpvote) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[333] + mi := &file_proto_Gameapi_proto_msgTypes[334] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18966,7 +19018,7 @@ func (x *ReqPlayroomUpvote) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomUpvote.ProtoReflect.Descriptor instead. func (*ReqPlayroomUpvote) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{333} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{334} } func (x *ReqPlayroomUpvote) GetId() int64 { @@ -18987,7 +19039,7 @@ type ResPlayroomUpvote struct { func (x *ResPlayroomUpvote) Reset() { *x = ResPlayroomUpvote{} - mi := &file_proto_Gameapi_proto_msgTypes[334] + mi := &file_proto_Gameapi_proto_msgTypes[335] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18999,7 +19051,7 @@ func (x *ResPlayroomUpvote) String() string { func (*ResPlayroomUpvote) ProtoMessage() {} func (x *ResPlayroomUpvote) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[334] + mi := &file_proto_Gameapi_proto_msgTypes[335] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19012,7 +19064,7 @@ func (x *ResPlayroomUpvote) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomUpvote.ProtoReflect.Descriptor instead. func (*ResPlayroomUpvote) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{334} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{335} } func (x *ResPlayroomUpvote) GetCode() RES_CODE { @@ -19045,7 +19097,7 @@ type PlayroomDress struct { func (x *PlayroomDress) Reset() { *x = PlayroomDress{} - mi := &file_proto_Gameapi_proto_msgTypes[335] + mi := &file_proto_Gameapi_proto_msgTypes[336] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19057,7 +19109,7 @@ func (x *PlayroomDress) String() string { func (*PlayroomDress) ProtoMessage() {} func (x *PlayroomDress) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[335] + mi := &file_proto_Gameapi_proto_msgTypes[336] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19070,7 +19122,7 @@ func (x *PlayroomDress) ProtoReflect() protoreflect.Message { // Deprecated: Use PlayroomDress.ProtoReflect.Descriptor instead. func (*PlayroomDress) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{335} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{336} } func (x *PlayroomDress) GetList() []int32 { @@ -19089,7 +19141,7 @@ type ReqPlayroomDressSet struct { func (x *ReqPlayroomDressSet) Reset() { *x = ReqPlayroomDressSet{} - mi := &file_proto_Gameapi_proto_msgTypes[336] + mi := &file_proto_Gameapi_proto_msgTypes[337] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19101,7 +19153,7 @@ func (x *ReqPlayroomDressSet) String() string { func (*ReqPlayroomDressSet) ProtoMessage() {} func (x *ReqPlayroomDressSet) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[336] + mi := &file_proto_Gameapi_proto_msgTypes[337] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19114,7 +19166,7 @@ func (x *ReqPlayroomDressSet) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomDressSet.ProtoReflect.Descriptor instead. func (*ReqPlayroomDressSet) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{336} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{337} } func (x *ReqPlayroomDressSet) GetDressSet() map[int32]int32 { @@ -19134,7 +19186,7 @@ type ResPlayroomDressSet struct { func (x *ResPlayroomDressSet) Reset() { *x = ResPlayroomDressSet{} - mi := &file_proto_Gameapi_proto_msgTypes[337] + mi := &file_proto_Gameapi_proto_msgTypes[338] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19146,7 +19198,7 @@ func (x *ResPlayroomDressSet) String() string { func (*ResPlayroomDressSet) ProtoMessage() {} func (x *ResPlayroomDressSet) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[337] + mi := &file_proto_Gameapi_proto_msgTypes[338] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19159,7 +19211,7 @@ func (x *ResPlayroomDressSet) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomDressSet.ProtoReflect.Descriptor instead. func (*ResPlayroomDressSet) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{337} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{338} } func (x *ResPlayroomDressSet) GetCode() RES_CODE { @@ -19185,7 +19237,7 @@ type ReqPlayroomPetAirSet struct { func (x *ReqPlayroomPetAirSet) Reset() { *x = ReqPlayroomPetAirSet{} - mi := &file_proto_Gameapi_proto_msgTypes[338] + mi := &file_proto_Gameapi_proto_msgTypes[339] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19197,7 +19249,7 @@ func (x *ReqPlayroomPetAirSet) String() string { func (*ReqPlayroomPetAirSet) ProtoMessage() {} func (x *ReqPlayroomPetAirSet) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[338] + mi := &file_proto_Gameapi_proto_msgTypes[339] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19210,7 +19262,7 @@ func (x *ReqPlayroomPetAirSet) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomPetAirSet.ProtoReflect.Descriptor instead. func (*ReqPlayroomPetAirSet) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{338} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{339} } func (x *ReqPlayroomPetAirSet) GetPetAirSet() int32 { @@ -19230,7 +19282,7 @@ type ResPlayroomPetAirSet struct { func (x *ResPlayroomPetAirSet) Reset() { *x = ResPlayroomPetAirSet{} - mi := &file_proto_Gameapi_proto_msgTypes[339] + mi := &file_proto_Gameapi_proto_msgTypes[340] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19242,7 +19294,7 @@ func (x *ResPlayroomPetAirSet) String() string { func (*ResPlayroomPetAirSet) ProtoMessage() {} func (x *ResPlayroomPetAirSet) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[339] + mi := &file_proto_Gameapi_proto_msgTypes[340] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19255,7 +19307,7 @@ func (x *ResPlayroomPetAirSet) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomPetAirSet.ProtoReflect.Descriptor instead. func (*ResPlayroomPetAirSet) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{339} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{340} } func (x *ResPlayroomPetAirSet) GetCode() RES_CODE { @@ -19280,7 +19332,7 @@ type ReqPlayroomWrokOutline struct { func (x *ReqPlayroomWrokOutline) Reset() { *x = ReqPlayroomWrokOutline{} - mi := &file_proto_Gameapi_proto_msgTypes[340] + mi := &file_proto_Gameapi_proto_msgTypes[341] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19292,7 +19344,7 @@ func (x *ReqPlayroomWrokOutline) String() string { func (*ReqPlayroomWrokOutline) ProtoMessage() {} func (x *ReqPlayroomWrokOutline) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[340] + mi := &file_proto_Gameapi_proto_msgTypes[341] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19305,7 +19357,7 @@ func (x *ReqPlayroomWrokOutline) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomWrokOutline.ProtoReflect.Descriptor instead. func (*ReqPlayroomWrokOutline) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{340} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{341} } type ResPlayroomWrokOutline struct { @@ -19318,7 +19370,7 @@ type ResPlayroomWrokOutline struct { func (x *ResPlayroomWrokOutline) Reset() { *x = ResPlayroomWrokOutline{} - mi := &file_proto_Gameapi_proto_msgTypes[341] + mi := &file_proto_Gameapi_proto_msgTypes[342] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19330,7 +19382,7 @@ func (x *ResPlayroomWrokOutline) String() string { func (*ResPlayroomWrokOutline) ProtoMessage() {} func (x *ResPlayroomWrokOutline) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[341] + mi := &file_proto_Gameapi_proto_msgTypes[342] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19343,7 +19395,7 @@ func (x *ResPlayroomWrokOutline) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomWrokOutline.ProtoReflect.Descriptor instead. func (*ResPlayroomWrokOutline) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{341} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{342} } func (x *ResPlayroomWrokOutline) GetCode() RES_CODE { @@ -19369,7 +19421,7 @@ type NofiPlayroomStatus struct { func (x *NofiPlayroomStatus) Reset() { *x = NofiPlayroomStatus{} - mi := &file_proto_Gameapi_proto_msgTypes[342] + mi := &file_proto_Gameapi_proto_msgTypes[343] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19381,7 +19433,7 @@ func (x *NofiPlayroomStatus) String() string { func (*NofiPlayroomStatus) ProtoMessage() {} func (x *NofiPlayroomStatus) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[342] + mi := &file_proto_Gameapi_proto_msgTypes[343] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19394,7 +19446,7 @@ func (x *NofiPlayroomStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use NofiPlayroomStatus.ProtoReflect.Descriptor instead. func (*NofiPlayroomStatus) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{342} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{343} } func (x *NofiPlayroomStatus) GetWorkOutline() int32 { @@ -19414,7 +19466,7 @@ type NotifyPlayroomWork struct { func (x *NotifyPlayroomWork) Reset() { *x = NotifyPlayroomWork{} - mi := &file_proto_Gameapi_proto_msgTypes[343] + mi := &file_proto_Gameapi_proto_msgTypes[344] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19426,7 +19478,7 @@ func (x *NotifyPlayroomWork) String() string { func (*NotifyPlayroomWork) ProtoMessage() {} func (x *NotifyPlayroomWork) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[343] + mi := &file_proto_Gameapi_proto_msgTypes[344] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19439,7 +19491,7 @@ func (x *NotifyPlayroomWork) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyPlayroomWork.ProtoReflect.Descriptor instead. func (*NotifyPlayroomWork) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{343} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{344} } func (x *NotifyPlayroomWork) GetStartTime() int32 { @@ -19466,7 +19518,7 @@ type NotifyPlayroomLose struct { func (x *NotifyPlayroomLose) Reset() { *x = NotifyPlayroomLose{} - mi := &file_proto_Gameapi_proto_msgTypes[344] + mi := &file_proto_Gameapi_proto_msgTypes[345] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19478,7 +19530,7 @@ func (x *NotifyPlayroomLose) String() string { func (*NotifyPlayroomLose) ProtoMessage() {} func (x *NotifyPlayroomLose) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[344] + mi := &file_proto_Gameapi_proto_msgTypes[345] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19491,7 +19543,7 @@ func (x *NotifyPlayroomLose) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyPlayroomLose.ProtoReflect.Descriptor instead. func (*NotifyPlayroomLose) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{344} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{345} } func (x *NotifyPlayroomLose) GetLoseItem() []*ItemInfo { @@ -19517,7 +19569,7 @@ type ChipInfo struct { func (x *ChipInfo) Reset() { *x = ChipInfo{} - mi := &file_proto_Gameapi_proto_msgTypes[345] + mi := &file_proto_Gameapi_proto_msgTypes[346] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19529,7 +19581,7 @@ func (x *ChipInfo) String() string { func (*ChipInfo) ProtoMessage() {} func (x *ChipInfo) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[345] + mi := &file_proto_Gameapi_proto_msgTypes[346] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19542,7 +19594,7 @@ func (x *ChipInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ChipInfo.ProtoReflect.Descriptor instead. func (*ChipInfo) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{345} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{346} } func (x *ChipInfo) GetUid() int64 { @@ -19563,7 +19615,7 @@ type NotifyPlayroomMood struct { func (x *NotifyPlayroomMood) Reset() { *x = NotifyPlayroomMood{} - mi := &file_proto_Gameapi_proto_msgTypes[346] + mi := &file_proto_Gameapi_proto_msgTypes[347] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19575,7 +19627,7 @@ func (x *NotifyPlayroomMood) String() string { func (*NotifyPlayroomMood) ProtoMessage() {} func (x *NotifyPlayroomMood) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[346] + mi := &file_proto_Gameapi_proto_msgTypes[347] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19588,7 +19640,7 @@ func (x *NotifyPlayroomMood) ProtoReflect() protoreflect.Message { // Deprecated: Use NotifyPlayroomMood.ProtoReflect.Descriptor instead. func (*NotifyPlayroomMood) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{346} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{347} } func (x *NotifyPlayroomMood) GetAllMood() int32 { @@ -19625,7 +19677,7 @@ type FriendRoom struct { func (x *FriendRoom) Reset() { *x = FriendRoom{} - mi := &file_proto_Gameapi_proto_msgTypes[347] + mi := &file_proto_Gameapi_proto_msgTypes[348] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19637,7 +19689,7 @@ func (x *FriendRoom) String() string { func (*FriendRoom) ProtoMessage() {} func (x *FriendRoom) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[347] + mi := &file_proto_Gameapi_proto_msgTypes[348] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19650,7 +19702,7 @@ func (x *FriendRoom) ProtoReflect() protoreflect.Message { // Deprecated: Use FriendRoom.ProtoReflect.Descriptor instead. func (*FriendRoom) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{347} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{348} } func (x *FriendRoom) GetUid() int64 { @@ -19701,7 +19753,7 @@ type RoomOpponent struct { func (x *RoomOpponent) Reset() { *x = RoomOpponent{} - mi := &file_proto_Gameapi_proto_msgTypes[348] + mi := &file_proto_Gameapi_proto_msgTypes[349] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19713,7 +19765,7 @@ func (x *RoomOpponent) String() string { func (*RoomOpponent) ProtoMessage() {} func (x *RoomOpponent) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[348] + mi := &file_proto_Gameapi_proto_msgTypes[349] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19726,7 +19778,7 @@ func (x *RoomOpponent) ProtoReflect() protoreflect.Message { // Deprecated: Use RoomOpponent.ProtoReflect.Descriptor instead. func (*RoomOpponent) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{348} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{349} } func (x *RoomOpponent) GetUid() int64 { @@ -19774,7 +19826,7 @@ type ReqPlayroomInfo struct { func (x *ReqPlayroomInfo) Reset() { *x = ReqPlayroomInfo{} - mi := &file_proto_Gameapi_proto_msgTypes[349] + mi := &file_proto_Gameapi_proto_msgTypes[350] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19786,7 +19838,7 @@ func (x *ReqPlayroomInfo) String() string { func (*ReqPlayroomInfo) ProtoMessage() {} func (x *ReqPlayroomInfo) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[349] + mi := &file_proto_Gameapi_proto_msgTypes[350] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19799,7 +19851,7 @@ func (x *ReqPlayroomInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomInfo.ProtoReflect.Descriptor instead. func (*ReqPlayroomInfo) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{349} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{350} } func (x *ReqPlayroomInfo) GetUid() int64 { @@ -19831,7 +19883,7 @@ type ResPlayroomInfo struct { func (x *ResPlayroomInfo) Reset() { *x = ResPlayroomInfo{} - mi := &file_proto_Gameapi_proto_msgTypes[350] + mi := &file_proto_Gameapi_proto_msgTypes[351] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19843,7 +19895,7 @@ func (x *ResPlayroomInfo) String() string { func (*ResPlayroomInfo) ProtoMessage() {} func (x *ResPlayroomInfo) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[350] + mi := &file_proto_Gameapi_proto_msgTypes[351] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19856,7 +19908,7 @@ func (x *ResPlayroomInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomInfo.ProtoReflect.Descriptor instead. func (*ResPlayroomInfo) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{350} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{351} } func (x *ResPlayroomInfo) GetUid() int64 { @@ -19967,7 +20019,7 @@ type ReqPlayroomFlip struct { func (x *ReqPlayroomFlip) Reset() { *x = ReqPlayroomFlip{} - mi := &file_proto_Gameapi_proto_msgTypes[351] + mi := &file_proto_Gameapi_proto_msgTypes[352] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19979,7 +20031,7 @@ func (x *ReqPlayroomFlip) String() string { func (*ReqPlayroomFlip) ProtoMessage() {} func (x *ReqPlayroomFlip) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[351] + mi := &file_proto_Gameapi_proto_msgTypes[352] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19992,7 +20044,7 @@ func (x *ReqPlayroomFlip) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomFlip.ProtoReflect.Descriptor instead. func (*ReqPlayroomFlip) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{351} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{352} } func (x *ReqPlayroomFlip) GetId() int32 { @@ -20014,7 +20066,7 @@ type ResPlayroomFlip struct { func (x *ResPlayroomFlip) Reset() { *x = ResPlayroomFlip{} - mi := &file_proto_Gameapi_proto_msgTypes[352] + mi := &file_proto_Gameapi_proto_msgTypes[353] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20026,7 +20078,7 @@ func (x *ResPlayroomFlip) String() string { func (*ResPlayroomFlip) ProtoMessage() {} func (x *ResPlayroomFlip) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[352] + mi := &file_proto_Gameapi_proto_msgTypes[353] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20039,7 +20091,7 @@ func (x *ResPlayroomFlip) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomFlip.ProtoReflect.Descriptor instead. func (*ResPlayroomFlip) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{352} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{353} } func (x *ResPlayroomFlip) GetCode() RES_CODE { @@ -20079,7 +20131,7 @@ type ReqPlayroomFlipReward struct { func (x *ReqPlayroomFlipReward) Reset() { *x = ReqPlayroomFlipReward{} - mi := &file_proto_Gameapi_proto_msgTypes[353] + mi := &file_proto_Gameapi_proto_msgTypes[354] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20091,7 +20143,7 @@ func (x *ReqPlayroomFlipReward) String() string { func (*ReqPlayroomFlipReward) ProtoMessage() {} func (x *ReqPlayroomFlipReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[353] + mi := &file_proto_Gameapi_proto_msgTypes[354] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20104,7 +20156,7 @@ func (x *ReqPlayroomFlipReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomFlipReward.ProtoReflect.Descriptor instead. func (*ReqPlayroomFlipReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{353} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{354} } type ResPlayroomFlipReward struct { @@ -20117,7 +20169,7 @@ type ResPlayroomFlipReward struct { func (x *ResPlayroomFlipReward) Reset() { *x = ResPlayroomFlipReward{} - mi := &file_proto_Gameapi_proto_msgTypes[354] + mi := &file_proto_Gameapi_proto_msgTypes[355] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20129,7 +20181,7 @@ func (x *ResPlayroomFlipReward) String() string { func (*ResPlayroomFlipReward) ProtoMessage() {} func (x *ResPlayroomFlipReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[354] + mi := &file_proto_Gameapi_proto_msgTypes[355] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20142,7 +20194,7 @@ func (x *ResPlayroomFlipReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomFlipReward.ProtoReflect.Descriptor instead. func (*ResPlayroomFlipReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{354} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{355} } func (x *ResPlayroomFlipReward) GetCode() RES_CODE { @@ -20168,7 +20220,7 @@ type ReqPlayroomGame struct { func (x *ReqPlayroomGame) Reset() { *x = ReqPlayroomGame{} - mi := &file_proto_Gameapi_proto_msgTypes[355] + mi := &file_proto_Gameapi_proto_msgTypes[356] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20180,7 +20232,7 @@ func (x *ReqPlayroomGame) String() string { func (*ReqPlayroomGame) ProtoMessage() {} func (x *ReqPlayroomGame) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[355] + mi := &file_proto_Gameapi_proto_msgTypes[356] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20193,7 +20245,7 @@ func (x *ReqPlayroomGame) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomGame.ProtoReflect.Descriptor instead. func (*ReqPlayroomGame) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{355} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{356} } func (x *ReqPlayroomGame) GetType() int32 { @@ -20215,7 +20267,7 @@ type ResPlayroomGame struct { func (x *ResPlayroomGame) Reset() { *x = ResPlayroomGame{} - mi := &file_proto_Gameapi_proto_msgTypes[356] + mi := &file_proto_Gameapi_proto_msgTypes[357] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20227,7 +20279,7 @@ func (x *ResPlayroomGame) String() string { func (*ResPlayroomGame) ProtoMessage() {} func (x *ResPlayroomGame) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[356] + mi := &file_proto_Gameapi_proto_msgTypes[357] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20240,7 +20292,7 @@ func (x *ResPlayroomGame) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomGame.ProtoReflect.Descriptor instead. func (*ResPlayroomGame) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{356} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{357} } func (x *ResPlayroomGame) GetCode() RES_CODE { @@ -20282,7 +20334,7 @@ type ReqPlayroomInteract struct { func (x *ReqPlayroomInteract) Reset() { *x = ReqPlayroomInteract{} - mi := &file_proto_Gameapi_proto_msgTypes[357] + mi := &file_proto_Gameapi_proto_msgTypes[358] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20294,7 +20346,7 @@ func (x *ReqPlayroomInteract) String() string { func (*ReqPlayroomInteract) ProtoMessage() {} func (x *ReqPlayroomInteract) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[357] + mi := &file_proto_Gameapi_proto_msgTypes[358] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20307,7 +20359,7 @@ func (x *ReqPlayroomInteract) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomInteract.ProtoReflect.Descriptor instead. func (*ReqPlayroomInteract) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{357} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{358} } func (x *ReqPlayroomInteract) GetId() int32 { @@ -20334,7 +20386,7 @@ type ResPlayroomInteract struct { func (x *ResPlayroomInteract) Reset() { *x = ResPlayroomInteract{} - mi := &file_proto_Gameapi_proto_msgTypes[358] + mi := &file_proto_Gameapi_proto_msgTypes[359] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20346,7 +20398,7 @@ func (x *ResPlayroomInteract) String() string { func (*ResPlayroomInteract) ProtoMessage() {} func (x *ResPlayroomInteract) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[358] + mi := &file_proto_Gameapi_proto_msgTypes[359] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20359,7 +20411,7 @@ func (x *ResPlayroomInteract) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomInteract.ProtoReflect.Descriptor instead. func (*ResPlayroomInteract) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{358} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{359} } func (x *ResPlayroomInteract) GetCode() RES_CODE { @@ -20386,7 +20438,7 @@ type ReqPlayroomSetRoom struct { func (x *ReqPlayroomSetRoom) Reset() { *x = ReqPlayroomSetRoom{} - mi := &file_proto_Gameapi_proto_msgTypes[359] + mi := &file_proto_Gameapi_proto_msgTypes[360] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20398,7 +20450,7 @@ func (x *ReqPlayroomSetRoom) String() string { func (*ReqPlayroomSetRoom) ProtoMessage() {} func (x *ReqPlayroomSetRoom) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[359] + mi := &file_proto_Gameapi_proto_msgTypes[360] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20411,7 +20463,7 @@ func (x *ReqPlayroomSetRoom) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomSetRoom.ProtoReflect.Descriptor instead. func (*ReqPlayroomSetRoom) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{359} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{360} } func (x *ReqPlayroomSetRoom) GetPlayroom() map[int32]int32 { @@ -20431,7 +20483,7 @@ type ResPlayroomSetRoom struct { func (x *ResPlayroomSetRoom) Reset() { *x = ResPlayroomSetRoom{} - mi := &file_proto_Gameapi_proto_msgTypes[360] + mi := &file_proto_Gameapi_proto_msgTypes[361] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20443,7 +20495,7 @@ func (x *ResPlayroomSetRoom) String() string { func (*ResPlayroomSetRoom) ProtoMessage() {} func (x *ResPlayroomSetRoom) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[360] + mi := &file_proto_Gameapi_proto_msgTypes[361] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20456,7 +20508,7 @@ func (x *ResPlayroomSetRoom) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomSetRoom.ProtoReflect.Descriptor instead. func (*ResPlayroomSetRoom) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{360} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{361} } func (x *ResPlayroomSetRoom) GetCode() RES_CODE { @@ -20482,7 +20534,7 @@ type ReqPlayroomSelectReward struct { func (x *ReqPlayroomSelectReward) Reset() { *x = ReqPlayroomSelectReward{} - mi := &file_proto_Gameapi_proto_msgTypes[361] + mi := &file_proto_Gameapi_proto_msgTypes[362] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20494,7 +20546,7 @@ func (x *ReqPlayroomSelectReward) String() string { func (*ReqPlayroomSelectReward) ProtoMessage() {} func (x *ReqPlayroomSelectReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[361] + mi := &file_proto_Gameapi_proto_msgTypes[362] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20507,7 +20559,7 @@ func (x *ReqPlayroomSelectReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomSelectReward.ProtoReflect.Descriptor instead. func (*ReqPlayroomSelectReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{361} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{362} } func (x *ReqPlayroomSelectReward) GetId() int32 { @@ -20527,7 +20579,7 @@ type ResPlayroomSelectReward struct { func (x *ResPlayroomSelectReward) Reset() { *x = ResPlayroomSelectReward{} - mi := &file_proto_Gameapi_proto_msgTypes[362] + mi := &file_proto_Gameapi_proto_msgTypes[363] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20539,7 +20591,7 @@ func (x *ResPlayroomSelectReward) String() string { func (*ResPlayroomSelectReward) ProtoMessage() {} func (x *ResPlayroomSelectReward) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[362] + mi := &file_proto_Gameapi_proto_msgTypes[363] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20552,7 +20604,7 @@ func (x *ResPlayroomSelectReward) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomSelectReward.ProtoReflect.Descriptor instead. func (*ResPlayroomSelectReward) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{362} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{363} } func (x *ResPlayroomSelectReward) GetCode() RES_CODE { @@ -20578,7 +20630,7 @@ type ReqPlayroomLose struct { func (x *ReqPlayroomLose) Reset() { *x = ReqPlayroomLose{} - mi := &file_proto_Gameapi_proto_msgTypes[363] + mi := &file_proto_Gameapi_proto_msgTypes[364] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20590,7 +20642,7 @@ func (x *ReqPlayroomLose) String() string { func (*ReqPlayroomLose) ProtoMessage() {} func (x *ReqPlayroomLose) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[363] + mi := &file_proto_Gameapi_proto_msgTypes[364] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20603,7 +20655,7 @@ func (x *ReqPlayroomLose) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomLose.ProtoReflect.Descriptor instead. func (*ReqPlayroomLose) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{363} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{364} } type ResPlayroomLose struct { @@ -20616,7 +20668,7 @@ type ResPlayroomLose struct { func (x *ResPlayroomLose) Reset() { *x = ResPlayroomLose{} - mi := &file_proto_Gameapi_proto_msgTypes[364] + mi := &file_proto_Gameapi_proto_msgTypes[365] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20628,7 +20680,7 @@ func (x *ResPlayroomLose) String() string { func (*ResPlayroomLose) ProtoMessage() {} func (x *ResPlayroomLose) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[364] + mi := &file_proto_Gameapi_proto_msgTypes[365] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20641,7 +20693,7 @@ func (x *ResPlayroomLose) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomLose.ProtoReflect.Descriptor instead. func (*ResPlayroomLose) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{364} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{365} } func (x *ResPlayroomLose) GetCode() RES_CODE { @@ -20667,7 +20719,7 @@ type ReqPlayroomWork struct { func (x *ReqPlayroomWork) Reset() { *x = ReqPlayroomWork{} - mi := &file_proto_Gameapi_proto_msgTypes[365] + mi := &file_proto_Gameapi_proto_msgTypes[366] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20679,7 +20731,7 @@ func (x *ReqPlayroomWork) String() string { func (*ReqPlayroomWork) ProtoMessage() {} func (x *ReqPlayroomWork) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[365] + mi := &file_proto_Gameapi_proto_msgTypes[366] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20692,7 +20744,7 @@ func (x *ReqPlayroomWork) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomWork.ProtoReflect.Descriptor instead. func (*ReqPlayroomWork) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{365} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{366} } type ResPlayroomWork struct { @@ -20705,7 +20757,7 @@ type ResPlayroomWork struct { func (x *ResPlayroomWork) Reset() { *x = ResPlayroomWork{} - mi := &file_proto_Gameapi_proto_msgTypes[366] + mi := &file_proto_Gameapi_proto_msgTypes[367] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20717,7 +20769,7 @@ func (x *ResPlayroomWork) String() string { func (*ResPlayroomWork) ProtoMessage() {} func (x *ResPlayroomWork) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[366] + mi := &file_proto_Gameapi_proto_msgTypes[367] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20730,7 +20782,7 @@ func (x *ResPlayroomWork) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomWork.ProtoReflect.Descriptor instead. func (*ResPlayroomWork) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{366} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{367} } func (x *ResPlayroomWork) GetCode() RES_CODE { @@ -20756,7 +20808,7 @@ type ReqPlayroomRest struct { func (x *ReqPlayroomRest) Reset() { *x = ReqPlayroomRest{} - mi := &file_proto_Gameapi_proto_msgTypes[367] + mi := &file_proto_Gameapi_proto_msgTypes[368] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20768,7 +20820,7 @@ func (x *ReqPlayroomRest) String() string { func (*ReqPlayroomRest) ProtoMessage() {} func (x *ReqPlayroomRest) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[367] + mi := &file_proto_Gameapi_proto_msgTypes[368] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20781,7 +20833,7 @@ func (x *ReqPlayroomRest) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomRest.ProtoReflect.Descriptor instead. func (*ReqPlayroomRest) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{367} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{368} } type ResPlayroomRest struct { @@ -20794,7 +20846,7 @@ type ResPlayroomRest struct { func (x *ResPlayroomRest) Reset() { *x = ResPlayroomRest{} - mi := &file_proto_Gameapi_proto_msgTypes[368] + mi := &file_proto_Gameapi_proto_msgTypes[369] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20806,7 +20858,7 @@ func (x *ResPlayroomRest) String() string { func (*ResPlayroomRest) ProtoMessage() {} func (x *ResPlayroomRest) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[368] + mi := &file_proto_Gameapi_proto_msgTypes[369] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20819,7 +20871,7 @@ func (x *ResPlayroomRest) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomRest.ProtoReflect.Descriptor instead. func (*ResPlayroomRest) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{368} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{369} } func (x *ResPlayroomRest) GetCode() RES_CODE { @@ -20845,7 +20897,7 @@ type ReqPlayroomDraw struct { func (x *ReqPlayroomDraw) Reset() { *x = ReqPlayroomDraw{} - mi := &file_proto_Gameapi_proto_msgTypes[369] + mi := &file_proto_Gameapi_proto_msgTypes[370] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20857,7 +20909,7 @@ func (x *ReqPlayroomDraw) String() string { func (*ReqPlayroomDraw) ProtoMessage() {} func (x *ReqPlayroomDraw) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[369] + mi := &file_proto_Gameapi_proto_msgTypes[370] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20870,7 +20922,7 @@ func (x *ReqPlayroomDraw) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomDraw.ProtoReflect.Descriptor instead. func (*ReqPlayroomDraw) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{369} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{370} } type ResPlayroomDraw struct { @@ -20884,7 +20936,7 @@ type ResPlayroomDraw struct { func (x *ResPlayroomDraw) Reset() { *x = ResPlayroomDraw{} - mi := &file_proto_Gameapi_proto_msgTypes[370] + mi := &file_proto_Gameapi_proto_msgTypes[371] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20896,7 +20948,7 @@ func (x *ResPlayroomDraw) String() string { func (*ResPlayroomDraw) ProtoMessage() {} func (x *ResPlayroomDraw) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[370] + mi := &file_proto_Gameapi_proto_msgTypes[371] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20909,7 +20961,7 @@ func (x *ResPlayroomDraw) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomDraw.ProtoReflect.Descriptor instead. func (*ResPlayroomDraw) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{370} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{371} } func (x *ResPlayroomDraw) GetCode() RES_CODE { @@ -20943,7 +20995,7 @@ type ReqPlayroomChip struct { func (x *ReqPlayroomChip) Reset() { *x = ReqPlayroomChip{} - mi := &file_proto_Gameapi_proto_msgTypes[371] + mi := &file_proto_Gameapi_proto_msgTypes[372] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20955,7 +21007,7 @@ func (x *ReqPlayroomChip) String() string { func (*ReqPlayroomChip) ProtoMessage() {} func (x *ReqPlayroomChip) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[371] + mi := &file_proto_Gameapi_proto_msgTypes[372] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20968,7 +21020,7 @@ func (x *ReqPlayroomChip) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomChip.ProtoReflect.Descriptor instead. func (*ReqPlayroomChip) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{371} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{372} } func (x *ReqPlayroomChip) GetUid() []int64 { @@ -20988,7 +21040,7 @@ type ResPlayroomChip struct { func (x *ResPlayroomChip) Reset() { *x = ResPlayroomChip{} - mi := &file_proto_Gameapi_proto_msgTypes[372] + mi := &file_proto_Gameapi_proto_msgTypes[373] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21000,7 +21052,7 @@ func (x *ResPlayroomChip) String() string { func (*ResPlayroomChip) ProtoMessage() {} func (x *ResPlayroomChip) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[372] + mi := &file_proto_Gameapi_proto_msgTypes[373] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21013,7 +21065,7 @@ func (x *ResPlayroomChip) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomChip.ProtoReflect.Descriptor instead. func (*ResPlayroomChip) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{372} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{373} } func (x *ResPlayroomChip) GetCode() RES_CODE { @@ -21039,7 +21091,7 @@ type ReqPlayroomBuyItem struct { func (x *ReqPlayroomBuyItem) Reset() { *x = ReqPlayroomBuyItem{} - mi := &file_proto_Gameapi_proto_msgTypes[373] + mi := &file_proto_Gameapi_proto_msgTypes[374] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21051,7 +21103,7 @@ func (x *ReqPlayroomBuyItem) String() string { func (*ReqPlayroomBuyItem) ProtoMessage() {} func (x *ReqPlayroomBuyItem) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[373] + mi := &file_proto_Gameapi_proto_msgTypes[374] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21064,7 +21116,7 @@ func (x *ReqPlayroomBuyItem) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomBuyItem.ProtoReflect.Descriptor instead. func (*ReqPlayroomBuyItem) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{373} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{374} } func (x *ReqPlayroomBuyItem) GetId() int32 { @@ -21084,7 +21136,7 @@ type ResPlayroomBuyItem struct { func (x *ResPlayroomBuyItem) Reset() { *x = ResPlayroomBuyItem{} - mi := &file_proto_Gameapi_proto_msgTypes[374] + mi := &file_proto_Gameapi_proto_msgTypes[375] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21096,7 +21148,7 @@ func (x *ResPlayroomBuyItem) String() string { func (*ResPlayroomBuyItem) ProtoMessage() {} func (x *ResPlayroomBuyItem) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[374] + mi := &file_proto_Gameapi_proto_msgTypes[375] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21109,7 +21161,7 @@ func (x *ResPlayroomBuyItem) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomBuyItem.ProtoReflect.Descriptor instead. func (*ResPlayroomBuyItem) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{374} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{375} } func (x *ResPlayroomBuyItem) GetCode() RES_CODE { @@ -21137,7 +21189,7 @@ type ReqPlayroomShop struct { func (x *ReqPlayroomShop) Reset() { *x = ReqPlayroomShop{} - mi := &file_proto_Gameapi_proto_msgTypes[375] + mi := &file_proto_Gameapi_proto_msgTypes[376] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21149,7 +21201,7 @@ func (x *ReqPlayroomShop) String() string { func (*ReqPlayroomShop) ProtoMessage() {} func (x *ReqPlayroomShop) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[375] + mi := &file_proto_Gameapi_proto_msgTypes[376] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21162,7 +21214,7 @@ func (x *ReqPlayroomShop) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqPlayroomShop.ProtoReflect.Descriptor instead. func (*ReqPlayroomShop) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{375} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{376} } func (x *ReqPlayroomShop) GetId() int32 { @@ -21189,7 +21241,7 @@ type ResPlayroomShop struct { func (x *ResPlayroomShop) Reset() { *x = ResPlayroomShop{} - mi := &file_proto_Gameapi_proto_msgTypes[376] + mi := &file_proto_Gameapi_proto_msgTypes[377] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21201,7 +21253,7 @@ func (x *ResPlayroomShop) String() string { func (*ResPlayroomShop) ProtoMessage() {} func (x *ResPlayroomShop) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[376] + mi := &file_proto_Gameapi_proto_msgTypes[377] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21214,7 +21266,7 @@ func (x *ResPlayroomShop) ProtoReflect() protoreflect.Message { // Deprecated: Use ResPlayroomShop.ProtoReflect.Descriptor instead. func (*ResPlayroomShop) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{376} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{377} } func (x *ResPlayroomShop) GetCode() RES_CODE { @@ -21240,7 +21292,7 @@ type ReqFriendTreasure struct { func (x *ReqFriendTreasure) Reset() { *x = ReqFriendTreasure{} - mi := &file_proto_Gameapi_proto_msgTypes[377] + mi := &file_proto_Gameapi_proto_msgTypes[378] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21252,7 +21304,7 @@ func (x *ReqFriendTreasure) String() string { func (*ReqFriendTreasure) ProtoMessage() {} func (x *ReqFriendTreasure) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[377] + mi := &file_proto_Gameapi_proto_msgTypes[378] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21265,7 +21317,7 @@ func (x *ReqFriendTreasure) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqFriendTreasure.ProtoReflect.Descriptor instead. func (*ReqFriendTreasure) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{377} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{378} } type ResFriendTreasure struct { @@ -21282,7 +21334,7 @@ type ResFriendTreasure struct { func (x *ResFriendTreasure) Reset() { *x = ResFriendTreasure{} - mi := &file_proto_Gameapi_proto_msgTypes[378] + mi := &file_proto_Gameapi_proto_msgTypes[379] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21294,7 +21346,7 @@ func (x *ResFriendTreasure) String() string { func (*ResFriendTreasure) ProtoMessage() {} func (x *ResFriendTreasure) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[378] + mi := &file_proto_Gameapi_proto_msgTypes[379] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21307,7 +21359,7 @@ func (x *ResFriendTreasure) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFriendTreasure.ProtoReflect.Descriptor instead. func (*ResFriendTreasure) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{378} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{379} } func (x *ResFriendTreasure) GetStatus() int32 { @@ -21367,7 +21419,7 @@ type TreasureInfo struct { func (x *TreasureInfo) Reset() { *x = TreasureInfo{} - mi := &file_proto_Gameapi_proto_msgTypes[379] + mi := &file_proto_Gameapi_proto_msgTypes[380] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21379,7 +21431,7 @@ func (x *TreasureInfo) String() string { func (*TreasureInfo) ProtoMessage() {} func (x *TreasureInfo) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[379] + mi := &file_proto_Gameapi_proto_msgTypes[380] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21392,7 +21444,7 @@ func (x *TreasureInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use TreasureInfo.ProtoReflect.Descriptor instead. func (*TreasureInfo) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{379} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{380} } func (x *TreasureInfo) GetPos() int32 { @@ -21454,7 +21506,7 @@ type ReqFriendTreasureStart struct { func (x *ReqFriendTreasureStart) Reset() { *x = ReqFriendTreasureStart{} - mi := &file_proto_Gameapi_proto_msgTypes[380] + mi := &file_proto_Gameapi_proto_msgTypes[381] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21466,7 +21518,7 @@ func (x *ReqFriendTreasureStart) String() string { func (*ReqFriendTreasureStart) ProtoMessage() {} func (x *ReqFriendTreasureStart) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[380] + mi := &file_proto_Gameapi_proto_msgTypes[381] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21479,7 +21531,7 @@ func (x *ReqFriendTreasureStart) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqFriendTreasureStart.ProtoReflect.Descriptor instead. func (*ReqFriendTreasureStart) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{380} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{381} } func (x *ReqFriendTreasureStart) GetList() []*TreasureInfo { @@ -21506,7 +21558,7 @@ type ResFriendTreasureStart struct { func (x *ResFriendTreasureStart) Reset() { *x = ResFriendTreasureStart{} - mi := &file_proto_Gameapi_proto_msgTypes[381] + mi := &file_proto_Gameapi_proto_msgTypes[382] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21518,7 +21570,7 @@ func (x *ResFriendTreasureStart) String() string { func (*ResFriendTreasureStart) ProtoMessage() {} func (x *ResFriendTreasureStart) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[381] + mi := &file_proto_Gameapi_proto_msgTypes[382] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21531,7 +21583,7 @@ func (x *ResFriendTreasureStart) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFriendTreasureStart.ProtoReflect.Descriptor instead. func (*ResFriendTreasureStart) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{381} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{382} } func (x *ResFriendTreasureStart) GetCode() RES_CODE { @@ -21556,7 +21608,7 @@ type ReqFriendTreasureEnd struct { func (x *ReqFriendTreasureEnd) Reset() { *x = ReqFriendTreasureEnd{} - mi := &file_proto_Gameapi_proto_msgTypes[382] + mi := &file_proto_Gameapi_proto_msgTypes[383] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21568,7 +21620,7 @@ func (x *ReqFriendTreasureEnd) String() string { func (*ReqFriendTreasureEnd) ProtoMessage() {} func (x *ReqFriendTreasureEnd) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[382] + mi := &file_proto_Gameapi_proto_msgTypes[383] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21581,7 +21633,7 @@ func (x *ReqFriendTreasureEnd) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqFriendTreasureEnd.ProtoReflect.Descriptor instead. func (*ReqFriendTreasureEnd) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{382} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{383} } type ResFriendTreasureEnd struct { @@ -21594,7 +21646,7 @@ type ResFriendTreasureEnd struct { func (x *ResFriendTreasureEnd) Reset() { *x = ResFriendTreasureEnd{} - mi := &file_proto_Gameapi_proto_msgTypes[383] + mi := &file_proto_Gameapi_proto_msgTypes[384] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21606,7 +21658,7 @@ func (x *ResFriendTreasureEnd) String() string { func (*ResFriendTreasureEnd) ProtoMessage() {} func (x *ResFriendTreasureEnd) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[383] + mi := &file_proto_Gameapi_proto_msgTypes[384] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21619,7 +21671,7 @@ func (x *ResFriendTreasureEnd) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFriendTreasureEnd.ProtoReflect.Descriptor instead. func (*ResFriendTreasureEnd) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{383} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{384} } func (x *ResFriendTreasureEnd) GetCode() RES_CODE { @@ -21645,7 +21697,7 @@ type ReqFriendTreasureFilp struct { func (x *ReqFriendTreasureFilp) Reset() { *x = ReqFriendTreasureFilp{} - mi := &file_proto_Gameapi_proto_msgTypes[384] + mi := &file_proto_Gameapi_proto_msgTypes[385] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21657,7 +21709,7 @@ func (x *ReqFriendTreasureFilp) String() string { func (*ReqFriendTreasureFilp) ProtoMessage() {} func (x *ReqFriendTreasureFilp) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[384] + mi := &file_proto_Gameapi_proto_msgTypes[385] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21670,7 +21722,7 @@ func (x *ReqFriendTreasureFilp) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqFriendTreasureFilp.ProtoReflect.Descriptor instead. func (*ReqFriendTreasureFilp) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{384} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{385} } func (x *ReqFriendTreasureFilp) GetPos() int32 { @@ -21690,7 +21742,7 @@ type ResFriendTreasureFilp struct { func (x *ResFriendTreasureFilp) Reset() { *x = ResFriendTreasureFilp{} - mi := &file_proto_Gameapi_proto_msgTypes[385] + mi := &file_proto_Gameapi_proto_msgTypes[386] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21702,7 +21754,7 @@ func (x *ResFriendTreasureFilp) String() string { func (*ResFriendTreasureFilp) ProtoMessage() {} func (x *ResFriendTreasureFilp) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[385] + mi := &file_proto_Gameapi_proto_msgTypes[386] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21715,7 +21767,7 @@ func (x *ResFriendTreasureFilp) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFriendTreasureFilp.ProtoReflect.Descriptor instead. func (*ResFriendTreasureFilp) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{385} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{386} } func (x *ResFriendTreasureFilp) GetCode() RES_CODE { @@ -21741,7 +21793,7 @@ type ResFriendTreasureStar struct { func (x *ResFriendTreasureStar) Reset() { *x = ResFriendTreasureStar{} - mi := &file_proto_Gameapi_proto_msgTypes[386] + mi := &file_proto_Gameapi_proto_msgTypes[387] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21753,7 +21805,7 @@ func (x *ResFriendTreasureStar) String() string { func (*ResFriendTreasureStar) ProtoMessage() {} func (x *ResFriendTreasureStar) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[386] + mi := &file_proto_Gameapi_proto_msgTypes[387] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21766,7 +21818,7 @@ func (x *ResFriendTreasureStar) ProtoReflect() protoreflect.Message { // Deprecated: Use ResFriendTreasureStar.ProtoReflect.Descriptor instead. func (*ResFriendTreasureStar) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{386} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{387} } func (x *ResFriendTreasureStar) GetStar() int32 { @@ -21786,7 +21838,7 @@ type ReqKafkaLog struct { func (x *ReqKafkaLog) Reset() { *x = ReqKafkaLog{} - mi := &file_proto_Gameapi_proto_msgTypes[387] + mi := &file_proto_Gameapi_proto_msgTypes[388] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21798,7 +21850,7 @@ func (x *ReqKafkaLog) String() string { func (*ReqKafkaLog) ProtoMessage() {} func (x *ReqKafkaLog) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[387] + mi := &file_proto_Gameapi_proto_msgTypes[388] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21811,7 +21863,7 @@ func (x *ReqKafkaLog) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqKafkaLog.ProtoReflect.Descriptor instead. func (*ReqKafkaLog) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{387} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{388} } func (x *ReqKafkaLog) GetEvent() string { @@ -21836,7 +21888,7 @@ type ReqCollectInfo struct { func (x *ReqCollectInfo) Reset() { *x = ReqCollectInfo{} - mi := &file_proto_Gameapi_proto_msgTypes[388] + mi := &file_proto_Gameapi_proto_msgTypes[389] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21848,7 +21900,7 @@ func (x *ReqCollectInfo) String() string { func (*ReqCollectInfo) ProtoMessage() {} func (x *ReqCollectInfo) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[388] + mi := &file_proto_Gameapi_proto_msgTypes[389] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21861,7 +21913,7 @@ func (x *ReqCollectInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCollectInfo.ProtoReflect.Descriptor instead. func (*ReqCollectInfo) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{388} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{389} } type ResCollectInfo struct { @@ -21874,7 +21926,7 @@ type ResCollectInfo struct { func (x *ResCollectInfo) Reset() { *x = ResCollectInfo{} - mi := &file_proto_Gameapi_proto_msgTypes[389] + mi := &file_proto_Gameapi_proto_msgTypes[390] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21886,7 +21938,7 @@ func (x *ResCollectInfo) String() string { func (*ResCollectInfo) ProtoMessage() {} func (x *ResCollectInfo) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[389] + mi := &file_proto_Gameapi_proto_msgTypes[390] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21899,7 +21951,7 @@ func (x *ResCollectInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCollectInfo.ProtoReflect.Descriptor instead. func (*ResCollectInfo) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{389} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{390} } func (x *ResCollectInfo) GetId() []int32 { @@ -21926,7 +21978,7 @@ type CollectItem struct { func (x *CollectItem) Reset() { *x = CollectItem{} - mi := &file_proto_Gameapi_proto_msgTypes[390] + mi := &file_proto_Gameapi_proto_msgTypes[391] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21938,7 +21990,7 @@ func (x *CollectItem) String() string { func (*CollectItem) ProtoMessage() {} func (x *CollectItem) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[390] + mi := &file_proto_Gameapi_proto_msgTypes[391] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21951,7 +22003,7 @@ func (x *CollectItem) ProtoReflect() protoreflect.Message { // Deprecated: Use CollectItem.ProtoReflect.Descriptor instead. func (*CollectItem) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{390} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{391} } func (x *CollectItem) GetId() int32 { @@ -21977,7 +22029,7 @@ type ReqCollect struct { func (x *ReqCollect) Reset() { *x = ReqCollect{} - mi := &file_proto_Gameapi_proto_msgTypes[391] + mi := &file_proto_Gameapi_proto_msgTypes[392] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21989,7 +22041,7 @@ func (x *ReqCollect) String() string { func (*ReqCollect) ProtoMessage() {} func (x *ReqCollect) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[391] + mi := &file_proto_Gameapi_proto_msgTypes[392] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22002,7 +22054,7 @@ func (x *ReqCollect) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqCollect.ProtoReflect.Descriptor instead. func (*ReqCollect) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{391} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{392} } func (x *ReqCollect) GetId() int32 { @@ -22022,7 +22074,7 @@ type ResCollect struct { func (x *ResCollect) Reset() { *x = ResCollect{} - mi := &file_proto_Gameapi_proto_msgTypes[392] + mi := &file_proto_Gameapi_proto_msgTypes[393] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22034,7 +22086,7 @@ func (x *ResCollect) String() string { func (*ResCollect) ProtoMessage() {} func (x *ResCollect) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[392] + mi := &file_proto_Gameapi_proto_msgTypes[393] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22047,7 +22099,7 @@ func (x *ResCollect) ProtoReflect() protoreflect.Message { // Deprecated: Use ResCollect.ProtoReflect.Descriptor instead. func (*ResCollect) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{392} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{393} } func (x *ResCollect) GetCode() RES_CODE { @@ -22075,7 +22127,7 @@ type AdminReq struct { func (x *AdminReq) Reset() { *x = AdminReq{} - mi := &file_proto_Gameapi_proto_msgTypes[393] + mi := &file_proto_Gameapi_proto_msgTypes[394] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22087,7 +22139,7 @@ func (x *AdminReq) String() string { func (*AdminReq) ProtoMessage() {} func (x *AdminReq) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[393] + mi := &file_proto_Gameapi_proto_msgTypes[394] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22100,7 +22152,7 @@ func (x *AdminReq) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminReq.ProtoReflect.Descriptor instead. func (*AdminReq) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{393} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{394} } func (x *AdminReq) GetFunc() string { @@ -22127,7 +22179,7 @@ type AdminRes struct { func (x *AdminRes) Reset() { *x = AdminRes{} - mi := &file_proto_Gameapi_proto_msgTypes[394] + mi := &file_proto_Gameapi_proto_msgTypes[395] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22139,7 +22191,7 @@ func (x *AdminRes) String() string { func (*AdminRes) ProtoMessage() {} func (x *AdminRes) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[394] + mi := &file_proto_Gameapi_proto_msgTypes[395] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22152,7 +22204,7 @@ func (x *AdminRes) ProtoReflect() protoreflect.Message { // Deprecated: Use AdminRes.ProtoReflect.Descriptor instead. func (*AdminRes) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{394} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{395} } func (x *AdminRes) GetFunc() string { @@ -22178,7 +22230,7 @@ type ReqAdminInfo struct { func (x *ReqAdminInfo) Reset() { *x = ReqAdminInfo{} - mi := &file_proto_Gameapi_proto_msgTypes[395] + mi := &file_proto_Gameapi_proto_msgTypes[396] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22190,7 +22242,7 @@ func (x *ReqAdminInfo) String() string { func (*ReqAdminInfo) ProtoMessage() {} func (x *ReqAdminInfo) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[395] + mi := &file_proto_Gameapi_proto_msgTypes[396] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22203,7 +22255,7 @@ func (x *ReqAdminInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAdminInfo.ProtoReflect.Descriptor instead. func (*ReqAdminInfo) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{395} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{396} } func (x *ReqAdminInfo) GetUid() int64 { @@ -22221,7 +22273,7 @@ type ReqReloadServerMail struct { func (x *ReqReloadServerMail) Reset() { *x = ReqReloadServerMail{} - mi := &file_proto_Gameapi_proto_msgTypes[396] + mi := &file_proto_Gameapi_proto_msgTypes[397] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22233,7 +22285,7 @@ func (x *ReqReloadServerMail) String() string { func (*ReqReloadServerMail) ProtoMessage() {} func (x *ReqReloadServerMail) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[396] + mi := &file_proto_Gameapi_proto_msgTypes[397] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22246,7 +22298,7 @@ func (x *ReqReloadServerMail) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqReloadServerMail.ProtoReflect.Descriptor instead. func (*ReqReloadServerMail) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{396} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{397} } type ReqServerInfo struct { @@ -22257,7 +22309,7 @@ type ReqServerInfo struct { func (x *ReqServerInfo) Reset() { *x = ReqServerInfo{} - mi := &file_proto_Gameapi_proto_msgTypes[397] + mi := &file_proto_Gameapi_proto_msgTypes[398] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22269,7 +22321,7 @@ func (x *ReqServerInfo) String() string { func (*ReqServerInfo) ProtoMessage() {} func (x *ReqServerInfo) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[397] + mi := &file_proto_Gameapi_proto_msgTypes[398] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22282,7 +22334,7 @@ func (x *ReqServerInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqServerInfo.ProtoReflect.Descriptor instead. func (*ReqServerInfo) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{397} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{398} } type ReqReload struct { @@ -22293,7 +22345,7 @@ type ReqReload struct { func (x *ReqReload) Reset() { *x = ReqReload{} - mi := &file_proto_Gameapi_proto_msgTypes[398] + mi := &file_proto_Gameapi_proto_msgTypes[399] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22305,7 +22357,7 @@ func (x *ReqReload) String() string { func (*ReqReload) ProtoMessage() {} func (x *ReqReload) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[398] + mi := &file_proto_Gameapi_proto_msgTypes[399] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22318,7 +22370,7 @@ func (x *ReqReload) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqReload.ProtoReflect.Descriptor instead. func (*ReqReload) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{398} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{399} } type ReqAdminGm struct { @@ -22331,7 +22383,7 @@ type ReqAdminGm struct { func (x *ReqAdminGm) Reset() { *x = ReqAdminGm{} - mi := &file_proto_Gameapi_proto_msgTypes[399] + mi := &file_proto_Gameapi_proto_msgTypes[400] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22343,7 +22395,7 @@ func (x *ReqAdminGm) String() string { func (*ReqAdminGm) ProtoMessage() {} func (x *ReqAdminGm) ProtoReflect() protoreflect.Message { - mi := &file_proto_Gameapi_proto_msgTypes[399] + mi := &file_proto_Gameapi_proto_msgTypes[400] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22356,7 +22408,7 @@ func (x *ReqAdminGm) ProtoReflect() protoreflect.Message { // Deprecated: Use ReqAdminGm.ProtoReflect.Descriptor instead. func (*ReqAdminGm) Descriptor() ([]byte, []int) { - return file_proto_Gameapi_proto_rawDescGZIP(), []int{399} + return file_proto_Gameapi_proto_rawDescGZIP(), []int{400} } func (x *ReqAdminGm) GetUid() int64 { @@ -23749,6 +23801,12 @@ const file_proto_Gameapi_proto_rawDesc = "" + "\x05value\x18\x02 \x01(\x05R\x05value:\x028\x01\x1aQ\n" + "\x0eDailyTaskEntry\x12\x10\n" + "\x03key\x18\x01 \x01(\x05R\x03key\x12)\n" + + "\x05value\x18\x02 \x01(\v2\x13.tutorial.DailyTaskR\x05value:\x028\x01\"\xdc\x01\n" + + "\x12NotifyPlayroomTask\x12I\n" + + "\tDailyTask\x18\x01 \x03(\v2+.tutorial.NotifyPlayroomTask.DailyTaskEntryR\tDailyTask\x12(\n" + + "\x0fDailyTaskReward\x18\x02 \x03(\x05R\x0fDailyTaskReward\x1aQ\n" + + "\x0eDailyTaskEntry\x12\x10\n" + + "\x03key\x18\x01 \x01(\x05R\x03key\x12)\n" + "\x05value\x18\x02 \x01(\v2\x13.tutorial.DailyTaskR\x05value:\x028\x01\"!\n" + "\x0fReqPlayroomTask\x12\x0e\n" + "\x02Id\x18\x01 \x01(\x05R\x02Id\"[\n" + @@ -24151,7 +24209,7 @@ func file_proto_Gameapi_proto_rawDescGZIP() []byte { } var file_proto_Gameapi_proto_enumTypes = make([]protoimpl.EnumInfo, 9) -var file_proto_Gameapi_proto_msgTypes = make([]protoimpl.MessageInfo, 461) +var file_proto_Gameapi_proto_msgTypes = make([]protoimpl.MessageInfo, 463) var file_proto_Gameapi_proto_goTypes = []any{ (ITEM_POP_LABEL)(0), // 0: tutorial.ITEM_POP_LABEL (HANDLE_TYPE)(0), // 1: tutorial.HANDLE_TYPE @@ -24489,167 +24547,169 @@ var file_proto_Gameapi_proto_goTypes = []any{ (*ResRaceReward)(nil), // 333: tutorial.ResRaceReward (*ReqPlayroom)(nil), // 334: tutorial.ReqPlayroom (*ResPlayroom)(nil), // 335: tutorial.ResPlayroom - (*ReqPlayroomTask)(nil), // 336: tutorial.ReqPlayroomTask - (*ResPlayroomTask)(nil), // 337: tutorial.ResPlayroomTask - (*ReqPlayroomTaskReward)(nil), // 338: tutorial.ReqPlayroomTaskReward - (*ResPlayroomTaskReward)(nil), // 339: tutorial.ResPlayroomTaskReward - (*ReqPlayroomUnlock)(nil), // 340: tutorial.ReqPlayroomUnlock - (*ResPlayroomUnlock)(nil), // 341: tutorial.ResPlayroomUnlock - (*ReqPlayroomUpvote)(nil), // 342: tutorial.ReqPlayroomUpvote - (*ResPlayroomUpvote)(nil), // 343: tutorial.ResPlayroomUpvote - (*PlayroomDress)(nil), // 344: tutorial.PlayroomDress - (*ReqPlayroomDressSet)(nil), // 345: tutorial.ReqPlayroomDressSet - (*ResPlayroomDressSet)(nil), // 346: tutorial.ResPlayroomDressSet - (*ReqPlayroomPetAirSet)(nil), // 347: tutorial.ReqPlayroomPetAirSet - (*ResPlayroomPetAirSet)(nil), // 348: tutorial.ResPlayroomPetAirSet - (*ReqPlayroomWrokOutline)(nil), // 349: tutorial.ReqPlayroomWrokOutline - (*ResPlayroomWrokOutline)(nil), // 350: tutorial.ResPlayroomWrokOutline - (*NofiPlayroomStatus)(nil), // 351: tutorial.NofiPlayroomStatus - (*NotifyPlayroomWork)(nil), // 352: tutorial.NotifyPlayroomWork - (*NotifyPlayroomLose)(nil), // 353: tutorial.NotifyPlayroomLose - (*ChipInfo)(nil), // 354: tutorial.ChipInfo - (*NotifyPlayroomMood)(nil), // 355: tutorial.NotifyPlayroomMood - (*FriendRoom)(nil), // 356: tutorial.FriendRoom - (*RoomOpponent)(nil), // 357: tutorial.RoomOpponent - (*ReqPlayroomInfo)(nil), // 358: tutorial.ReqPlayroomInfo - (*ResPlayroomInfo)(nil), // 359: tutorial.ResPlayroomInfo - (*ReqPlayroomFlip)(nil), // 360: tutorial.ReqPlayroomFlip - (*ResPlayroomFlip)(nil), // 361: tutorial.ResPlayroomFlip - (*ReqPlayroomFlipReward)(nil), // 362: tutorial.ReqPlayroomFlipReward - (*ResPlayroomFlipReward)(nil), // 363: tutorial.ResPlayroomFlipReward - (*ReqPlayroomGame)(nil), // 364: tutorial.ReqPlayroomGame - (*ResPlayroomGame)(nil), // 365: tutorial.ResPlayroomGame - (*ReqPlayroomInteract)(nil), // 366: tutorial.ReqPlayroomInteract - (*ResPlayroomInteract)(nil), // 367: tutorial.ResPlayroomInteract - (*ReqPlayroomSetRoom)(nil), // 368: tutorial.ReqPlayroomSetRoom - (*ResPlayroomSetRoom)(nil), // 369: tutorial.ResPlayroomSetRoom - (*ReqPlayroomSelectReward)(nil), // 370: tutorial.ReqPlayroomSelectReward - (*ResPlayroomSelectReward)(nil), // 371: tutorial.ResPlayroomSelectReward - (*ReqPlayroomLose)(nil), // 372: tutorial.ReqPlayroomLose - (*ResPlayroomLose)(nil), // 373: tutorial.ResPlayroomLose - (*ReqPlayroomWork)(nil), // 374: tutorial.ReqPlayroomWork - (*ResPlayroomWork)(nil), // 375: tutorial.ResPlayroomWork - (*ReqPlayroomRest)(nil), // 376: tutorial.ReqPlayroomRest - (*ResPlayroomRest)(nil), // 377: tutorial.ResPlayroomRest - (*ReqPlayroomDraw)(nil), // 378: tutorial.ReqPlayroomDraw - (*ResPlayroomDraw)(nil), // 379: tutorial.ResPlayroomDraw - (*ReqPlayroomChip)(nil), // 380: tutorial.ReqPlayroomChip - (*ResPlayroomChip)(nil), // 381: tutorial.ResPlayroomChip - (*ReqPlayroomBuyItem)(nil), // 382: tutorial.ReqPlayroomBuyItem - (*ResPlayroomBuyItem)(nil), // 383: tutorial.ResPlayroomBuyItem - (*ReqPlayroomShop)(nil), // 384: tutorial.ReqPlayroomShop - (*ResPlayroomShop)(nil), // 385: tutorial.ResPlayroomShop - (*ReqFriendTreasure)(nil), // 386: tutorial.ReqFriendTreasure - (*ResFriendTreasure)(nil), // 387: tutorial.ResFriendTreasure - (*TreasureInfo)(nil), // 388: tutorial.TreasureInfo - (*ReqFriendTreasureStart)(nil), // 389: tutorial.ReqFriendTreasureStart - (*ResFriendTreasureStart)(nil), // 390: tutorial.ResFriendTreasureStart - (*ReqFriendTreasureEnd)(nil), // 391: tutorial.ReqFriendTreasureEnd - (*ResFriendTreasureEnd)(nil), // 392: tutorial.ResFriendTreasureEnd - (*ReqFriendTreasureFilp)(nil), // 393: tutorial.ReqFriendTreasureFilp - (*ResFriendTreasureFilp)(nil), // 394: tutorial.ResFriendTreasureFilp - (*ResFriendTreasureStar)(nil), // 395: tutorial.ResFriendTreasureStar - (*ReqKafkaLog)(nil), // 396: tutorial.ReqKafkaLog - (*ReqCollectInfo)(nil), // 397: tutorial.ReqCollectInfo - (*ResCollectInfo)(nil), // 398: tutorial.ResCollectInfo - (*CollectItem)(nil), // 399: tutorial.CollectItem - (*ReqCollect)(nil), // 400: tutorial.ReqCollect - (*ResCollect)(nil), // 401: tutorial.ResCollect - (*AdminReq)(nil), // 402: tutorial.AdminReq - (*AdminRes)(nil), // 403: tutorial.AdminRes - (*ReqAdminInfo)(nil), // 404: tutorial.ReqAdminInfo - (*ReqReloadServerMail)(nil), // 405: tutorial.ReqReloadServerMail - (*ReqServerInfo)(nil), // 406: tutorial.ReqServerInfo - (*ReqReload)(nil), // 407: tutorial.ReqReload - (*ReqAdminGm)(nil), // 408: tutorial.ReqAdminGm - nil, // 409: tutorial.ResChessColorData.MChessColorDataEntry - nil, // 410: tutorial.UpdateBaseItemInfo.MUpdateItemEntry - nil, // 411: tutorial.ResPlayerChessData.MChessDataEntry - nil, // 412: tutorial.UpdatePlayerChessData.MChessDataEntry - nil, // 413: tutorial.ReqSeparateChess.MChessDataEntry - nil, // 414: tutorial.ReqUpgradeChess.MChessDataEntry - nil, // 415: tutorial.ReqGetChessFromBuff.MChessDataEntry - nil, // 416: tutorial.ReqChessEx.MChessDataEntry - nil, // 417: tutorial.ReqSourceChest.MChessDataEntry - nil, // 418: tutorial.ReqPlayroomOutline.MChessDataEntry - nil, // 419: tutorial.ReqPutChessInBag.MChessDataEntry - nil, // 420: tutorial.ReqTakeChessOutBag.MChessDataEntry - nil, // 421: tutorial.UserInfo.SetEmojiEntry - nil, // 422: tutorial.ReqRewardOrder.MChessDataEntry - nil, // 423: tutorial.ResCardInfo.AllCardEntry - nil, // 424: tutorial.ResCardInfo.HandbookEntry - nil, // 425: tutorial.ResGuildInfo.RewardEntry - nil, // 426: tutorial.ResGuideInfo.RewardEntry - nil, // 427: tutorial.ResDailyTask.WeekRewardEntry - nil, // 428: tutorial.ResDailyTask.DailyTaskEntry - nil, // 429: tutorial.ResLimitEvent.LimitEventListEntry - nil, // 430: tutorial.ResLimitEventProgress.ProgressRewardEntry - nil, // 431: tutorial.LimitEvent.ParamEntry - nil, // 432: tutorial.ReqLimitEventLuckyCat.MChessDataEntry - nil, // 433: tutorial.ResPlayerSimple.EmojiEntry - nil, // 434: tutorial.ResKv.KvEntry - nil, // 435: tutorial.ResRank.RankListEntry - nil, // 436: tutorial.ResMailList.MailListEntry - nil, // 437: tutorial.ResCharge.SpecialShopEntry - nil, // 438: tutorial.ResCharge.ChessShopEntry - nil, // 439: tutorial.ResCharge.GiftEntry - nil, // 440: tutorial.ReqBuyChessShop2.MChessDataEntry - nil, // 441: tutorial.ResEndless.EndlessListEntry - nil, // 442: tutorial.ResChampshipRank.RankListEntry - nil, // 443: tutorial.ResChampshipPreRank.RankListEntry - nil, // 444: tutorial.ResNotifyCard.CardEntry - nil, // 445: tutorial.ResNotifyCard.MasterEntry - nil, // 446: tutorial.ResNotifyCard.HandbookEntry - nil, // 447: tutorial.ResMining.MapEntry - nil, // 448: tutorial.ReqMiningTake.MapEntry - nil, // 449: tutorial.ResActRed.RedEntry - nil, // 450: tutorial.ResItem.ItemEntry - nil, // 451: tutorial.ItemNotify.ItemEntry - nil, // 452: tutorial.ResGuessColor.OMapEntry - nil, // 453: tutorial.ReqGuessColorTake.OMapEntry - nil, // 454: tutorial.GuessColorInfo.MapEntry - nil, // 455: tutorial.ResPlayroom.PlayroomEntry - nil, // 456: tutorial.ResPlayroom.MoodEntry - nil, // 457: tutorial.ResPlayroom.PhysiologyEntry - nil, // 458: tutorial.ResPlayroom.DressEntry - nil, // 459: tutorial.ResPlayroom.DressSetEntry - nil, // 460: tutorial.ResPlayroom.DailyTaskEntry - nil, // 461: tutorial.ReqPlayroomDressSet.DressSetEntry - nil, // 462: tutorial.NotifyPlayroomMood.MoodEntry - nil, // 463: tutorial.NotifyPlayroomMood.PhysiologyEntry - nil, // 464: tutorial.ResPlayroomInfo.PlayroomEntry - nil, // 465: tutorial.ResPlayroomInfo.ItemsEntry - nil, // 466: tutorial.ResPlayroomInfo.FlipEntry - nil, // 467: tutorial.ResPlayroomInfo.EmojiEntry - nil, // 468: tutorial.ResPlayroomGame.ItemsEntry - nil, // 469: tutorial.ReqPlayroomSetRoom.PlayroomEntry + (*NotifyPlayroomTask)(nil), // 336: tutorial.NotifyPlayroomTask + (*ReqPlayroomTask)(nil), // 337: tutorial.ReqPlayroomTask + (*ResPlayroomTask)(nil), // 338: tutorial.ResPlayroomTask + (*ReqPlayroomTaskReward)(nil), // 339: tutorial.ReqPlayroomTaskReward + (*ResPlayroomTaskReward)(nil), // 340: tutorial.ResPlayroomTaskReward + (*ReqPlayroomUnlock)(nil), // 341: tutorial.ReqPlayroomUnlock + (*ResPlayroomUnlock)(nil), // 342: tutorial.ResPlayroomUnlock + (*ReqPlayroomUpvote)(nil), // 343: tutorial.ReqPlayroomUpvote + (*ResPlayroomUpvote)(nil), // 344: tutorial.ResPlayroomUpvote + (*PlayroomDress)(nil), // 345: tutorial.PlayroomDress + (*ReqPlayroomDressSet)(nil), // 346: tutorial.ReqPlayroomDressSet + (*ResPlayroomDressSet)(nil), // 347: tutorial.ResPlayroomDressSet + (*ReqPlayroomPetAirSet)(nil), // 348: tutorial.ReqPlayroomPetAirSet + (*ResPlayroomPetAirSet)(nil), // 349: tutorial.ResPlayroomPetAirSet + (*ReqPlayroomWrokOutline)(nil), // 350: tutorial.ReqPlayroomWrokOutline + (*ResPlayroomWrokOutline)(nil), // 351: tutorial.ResPlayroomWrokOutline + (*NofiPlayroomStatus)(nil), // 352: tutorial.NofiPlayroomStatus + (*NotifyPlayroomWork)(nil), // 353: tutorial.NotifyPlayroomWork + (*NotifyPlayroomLose)(nil), // 354: tutorial.NotifyPlayroomLose + (*ChipInfo)(nil), // 355: tutorial.ChipInfo + (*NotifyPlayroomMood)(nil), // 356: tutorial.NotifyPlayroomMood + (*FriendRoom)(nil), // 357: tutorial.FriendRoom + (*RoomOpponent)(nil), // 358: tutorial.RoomOpponent + (*ReqPlayroomInfo)(nil), // 359: tutorial.ReqPlayroomInfo + (*ResPlayroomInfo)(nil), // 360: tutorial.ResPlayroomInfo + (*ReqPlayroomFlip)(nil), // 361: tutorial.ReqPlayroomFlip + (*ResPlayroomFlip)(nil), // 362: tutorial.ResPlayroomFlip + (*ReqPlayroomFlipReward)(nil), // 363: tutorial.ReqPlayroomFlipReward + (*ResPlayroomFlipReward)(nil), // 364: tutorial.ResPlayroomFlipReward + (*ReqPlayroomGame)(nil), // 365: tutorial.ReqPlayroomGame + (*ResPlayroomGame)(nil), // 366: tutorial.ResPlayroomGame + (*ReqPlayroomInteract)(nil), // 367: tutorial.ReqPlayroomInteract + (*ResPlayroomInteract)(nil), // 368: tutorial.ResPlayroomInteract + (*ReqPlayroomSetRoom)(nil), // 369: tutorial.ReqPlayroomSetRoom + (*ResPlayroomSetRoom)(nil), // 370: tutorial.ResPlayroomSetRoom + (*ReqPlayroomSelectReward)(nil), // 371: tutorial.ReqPlayroomSelectReward + (*ResPlayroomSelectReward)(nil), // 372: tutorial.ResPlayroomSelectReward + (*ReqPlayroomLose)(nil), // 373: tutorial.ReqPlayroomLose + (*ResPlayroomLose)(nil), // 374: tutorial.ResPlayroomLose + (*ReqPlayroomWork)(nil), // 375: tutorial.ReqPlayroomWork + (*ResPlayroomWork)(nil), // 376: tutorial.ResPlayroomWork + (*ReqPlayroomRest)(nil), // 377: tutorial.ReqPlayroomRest + (*ResPlayroomRest)(nil), // 378: tutorial.ResPlayroomRest + (*ReqPlayroomDraw)(nil), // 379: tutorial.ReqPlayroomDraw + (*ResPlayroomDraw)(nil), // 380: tutorial.ResPlayroomDraw + (*ReqPlayroomChip)(nil), // 381: tutorial.ReqPlayroomChip + (*ResPlayroomChip)(nil), // 382: tutorial.ResPlayroomChip + (*ReqPlayroomBuyItem)(nil), // 383: tutorial.ReqPlayroomBuyItem + (*ResPlayroomBuyItem)(nil), // 384: tutorial.ResPlayroomBuyItem + (*ReqPlayroomShop)(nil), // 385: tutorial.ReqPlayroomShop + (*ResPlayroomShop)(nil), // 386: tutorial.ResPlayroomShop + (*ReqFriendTreasure)(nil), // 387: tutorial.ReqFriendTreasure + (*ResFriendTreasure)(nil), // 388: tutorial.ResFriendTreasure + (*TreasureInfo)(nil), // 389: tutorial.TreasureInfo + (*ReqFriendTreasureStart)(nil), // 390: tutorial.ReqFriendTreasureStart + (*ResFriendTreasureStart)(nil), // 391: tutorial.ResFriendTreasureStart + (*ReqFriendTreasureEnd)(nil), // 392: tutorial.ReqFriendTreasureEnd + (*ResFriendTreasureEnd)(nil), // 393: tutorial.ResFriendTreasureEnd + (*ReqFriendTreasureFilp)(nil), // 394: tutorial.ReqFriendTreasureFilp + (*ResFriendTreasureFilp)(nil), // 395: tutorial.ResFriendTreasureFilp + (*ResFriendTreasureStar)(nil), // 396: tutorial.ResFriendTreasureStar + (*ReqKafkaLog)(nil), // 397: tutorial.ReqKafkaLog + (*ReqCollectInfo)(nil), // 398: tutorial.ReqCollectInfo + (*ResCollectInfo)(nil), // 399: tutorial.ResCollectInfo + (*CollectItem)(nil), // 400: tutorial.CollectItem + (*ReqCollect)(nil), // 401: tutorial.ReqCollect + (*ResCollect)(nil), // 402: tutorial.ResCollect + (*AdminReq)(nil), // 403: tutorial.AdminReq + (*AdminRes)(nil), // 404: tutorial.AdminRes + (*ReqAdminInfo)(nil), // 405: tutorial.ReqAdminInfo + (*ReqReloadServerMail)(nil), // 406: tutorial.ReqReloadServerMail + (*ReqServerInfo)(nil), // 407: tutorial.ReqServerInfo + (*ReqReload)(nil), // 408: tutorial.ReqReload + (*ReqAdminGm)(nil), // 409: tutorial.ReqAdminGm + nil, // 410: tutorial.ResChessColorData.MChessColorDataEntry + nil, // 411: tutorial.UpdateBaseItemInfo.MUpdateItemEntry + nil, // 412: tutorial.ResPlayerChessData.MChessDataEntry + nil, // 413: tutorial.UpdatePlayerChessData.MChessDataEntry + nil, // 414: tutorial.ReqSeparateChess.MChessDataEntry + nil, // 415: tutorial.ReqUpgradeChess.MChessDataEntry + nil, // 416: tutorial.ReqGetChessFromBuff.MChessDataEntry + nil, // 417: tutorial.ReqChessEx.MChessDataEntry + nil, // 418: tutorial.ReqSourceChest.MChessDataEntry + nil, // 419: tutorial.ReqPlayroomOutline.MChessDataEntry + nil, // 420: tutorial.ReqPutChessInBag.MChessDataEntry + nil, // 421: tutorial.ReqTakeChessOutBag.MChessDataEntry + nil, // 422: tutorial.UserInfo.SetEmojiEntry + nil, // 423: tutorial.ReqRewardOrder.MChessDataEntry + nil, // 424: tutorial.ResCardInfo.AllCardEntry + nil, // 425: tutorial.ResCardInfo.HandbookEntry + nil, // 426: tutorial.ResGuildInfo.RewardEntry + nil, // 427: tutorial.ResGuideInfo.RewardEntry + nil, // 428: tutorial.ResDailyTask.WeekRewardEntry + nil, // 429: tutorial.ResDailyTask.DailyTaskEntry + nil, // 430: tutorial.ResLimitEvent.LimitEventListEntry + nil, // 431: tutorial.ResLimitEventProgress.ProgressRewardEntry + nil, // 432: tutorial.LimitEvent.ParamEntry + nil, // 433: tutorial.ReqLimitEventLuckyCat.MChessDataEntry + nil, // 434: tutorial.ResPlayerSimple.EmojiEntry + nil, // 435: tutorial.ResKv.KvEntry + nil, // 436: tutorial.ResRank.RankListEntry + nil, // 437: tutorial.ResMailList.MailListEntry + nil, // 438: tutorial.ResCharge.SpecialShopEntry + nil, // 439: tutorial.ResCharge.ChessShopEntry + nil, // 440: tutorial.ResCharge.GiftEntry + nil, // 441: tutorial.ReqBuyChessShop2.MChessDataEntry + nil, // 442: tutorial.ResEndless.EndlessListEntry + nil, // 443: tutorial.ResChampshipRank.RankListEntry + nil, // 444: tutorial.ResChampshipPreRank.RankListEntry + nil, // 445: tutorial.ResNotifyCard.CardEntry + nil, // 446: tutorial.ResNotifyCard.MasterEntry + nil, // 447: tutorial.ResNotifyCard.HandbookEntry + nil, // 448: tutorial.ResMining.MapEntry + nil, // 449: tutorial.ReqMiningTake.MapEntry + nil, // 450: tutorial.ResActRed.RedEntry + nil, // 451: tutorial.ResItem.ItemEntry + nil, // 452: tutorial.ItemNotify.ItemEntry + nil, // 453: tutorial.ResGuessColor.OMapEntry + nil, // 454: tutorial.ReqGuessColorTake.OMapEntry + nil, // 455: tutorial.GuessColorInfo.MapEntry + nil, // 456: tutorial.ResPlayroom.PlayroomEntry + nil, // 457: tutorial.ResPlayroom.MoodEntry + nil, // 458: tutorial.ResPlayroom.PhysiologyEntry + nil, // 459: tutorial.ResPlayroom.DressEntry + nil, // 460: tutorial.ResPlayroom.DressSetEntry + nil, // 461: tutorial.ResPlayroom.DailyTaskEntry + nil, // 462: tutorial.NotifyPlayroomTask.DailyTaskEntry + nil, // 463: tutorial.ReqPlayroomDressSet.DressSetEntry + nil, // 464: tutorial.NotifyPlayroomMood.MoodEntry + nil, // 465: tutorial.NotifyPlayroomMood.PhysiologyEntry + nil, // 466: tutorial.ResPlayroomInfo.PlayroomEntry + nil, // 467: tutorial.ResPlayroomInfo.ItemsEntry + nil, // 468: tutorial.ResPlayroomInfo.FlipEntry + nil, // 469: tutorial.ResPlayroomInfo.EmojiEntry + nil, // 470: tutorial.ResPlayroomGame.ItemsEntry + nil, // 471: tutorial.ReqPlayroomSetRoom.PlayroomEntry } var file_proto_Gameapi_proto_depIdxs = []int32{ - 409, // 0: tutorial.ResChessColorData.mChessColorData:type_name -> tutorial.ResChessColorData.MChessColorDataEntry - 410, // 1: tutorial.UpdateBaseItemInfo.mUpdateItem:type_name -> tutorial.UpdateBaseItemInfo.MUpdateItemEntry - 411, // 2: tutorial.ResPlayerChessData.mChessData:type_name -> tutorial.ResPlayerChessData.MChessDataEntry + 410, // 0: tutorial.ResChessColorData.mChessColorData:type_name -> tutorial.ResChessColorData.MChessColorDataEntry + 411, // 1: tutorial.UpdateBaseItemInfo.mUpdateItem:type_name -> tutorial.UpdateBaseItemInfo.MUpdateItemEntry + 412, // 2: tutorial.ResPlayerChessData.mChessData:type_name -> tutorial.ResPlayerChessData.MChessDataEntry 57, // 3: tutorial.ResPlayerChessInfo.ChessBag:type_name -> tutorial.ChessBag 1, // 4: tutorial.ChessHandle.type:type_name -> tutorial.HANDLE_TYPE - 412, // 5: tutorial.UpdatePlayerChessData.mChessData:type_name -> tutorial.UpdatePlayerChessData.MChessDataEntry + 413, // 5: tutorial.UpdatePlayerChessData.mChessData:type_name -> tutorial.UpdatePlayerChessData.MChessDataEntry 42, // 6: tutorial.UpdatePlayerChessData.mChessHandle:type_name -> tutorial.ChessHandle 2, // 7: tutorial.ResUpdatePlayerChessData.code:type_name -> tutorial.RES_CODE - 413, // 8: tutorial.ReqSeparateChess.mChessData:type_name -> tutorial.ReqSeparateChess.MChessDataEntry + 414, // 8: tutorial.ReqSeparateChess.mChessData:type_name -> tutorial.ReqSeparateChess.MChessDataEntry 2, // 9: tutorial.ResSeparateChess.code:type_name -> tutorial.RES_CODE - 414, // 10: tutorial.ReqUpgradeChess.mChessData:type_name -> tutorial.ReqUpgradeChess.MChessDataEntry + 415, // 10: tutorial.ReqUpgradeChess.mChessData:type_name -> tutorial.ReqUpgradeChess.MChessDataEntry 2, // 11: tutorial.ResUpgradeChess.code:type_name -> tutorial.RES_CODE - 415, // 12: tutorial.ReqGetChessFromBuff.mChessData:type_name -> tutorial.ReqGetChessFromBuff.MChessDataEntry + 416, // 12: tutorial.ReqGetChessFromBuff.mChessData:type_name -> tutorial.ReqGetChessFromBuff.MChessDataEntry 2, // 13: tutorial.ResGetChessFromBuff.code:type_name -> tutorial.RES_CODE 6, // 14: tutorial.ReqChessEx.Type:type_name -> tutorial.CHESS_EX_TYPE - 416, // 15: tutorial.ReqChessEx.mChessData:type_name -> tutorial.ReqChessEx.MChessDataEntry + 417, // 15: tutorial.ReqChessEx.mChessData:type_name -> tutorial.ReqChessEx.MChessDataEntry 2, // 16: tutorial.ResChessEx.code:type_name -> tutorial.RES_CODE - 417, // 17: tutorial.ReqSourceChest.mChessData:type_name -> tutorial.ReqSourceChest.MChessDataEntry + 418, // 17: tutorial.ReqSourceChest.mChessData:type_name -> tutorial.ReqSourceChest.MChessDataEntry 2, // 18: tutorial.ResSourceChest.code:type_name -> tutorial.RES_CODE - 418, // 19: tutorial.ReqPlayroomOutline.mChessData:type_name -> tutorial.ReqPlayroomOutline.MChessDataEntry + 419, // 19: tutorial.ReqPlayroomOutline.mChessData:type_name -> tutorial.ReqPlayroomOutline.MChessDataEntry 2, // 20: tutorial.ResPlayroomOutline.code:type_name -> tutorial.RES_CODE 58, // 21: tutorial.ChessBag.ChessBagGrids:type_name -> tutorial.ChessBagGrid - 419, // 22: tutorial.ReqPutChessInBag.mChessData:type_name -> tutorial.ReqPutChessInBag.MChessDataEntry + 420, // 22: tutorial.ReqPutChessInBag.mChessData:type_name -> tutorial.ReqPutChessInBag.MChessDataEntry 2, // 23: tutorial.ResPutChessInBag.code:type_name -> tutorial.RES_CODE - 420, // 24: tutorial.ReqTakeChessOutBag.mChessData:type_name -> tutorial.ReqTakeChessOutBag.MChessDataEntry + 421, // 24: tutorial.ReqTakeChessOutBag.mChessData:type_name -> tutorial.ReqTakeChessOutBag.MChessDataEntry 2, // 25: tutorial.ResTakeChessOutBag.code:type_name -> tutorial.RES_CODE 2, // 26: tutorial.ResBuyChessBagGrid.code:type_name -> tutorial.RES_CODE 2, // 27: tutorial.ResSetEnergyMul.ResultCode:type_name -> tutorial.RES_CODE @@ -24659,7 +24719,7 @@ var file_proto_Gameapi_proto_depIdxs = []int32{ 164, // 31: tutorial.UserInfo.AvatarList:type_name -> tutorial.AvatarInfo 160, // 32: tutorial.UserInfo.FaceList:type_name -> tutorial.FaceInfo 167, // 33: tutorial.UserInfo.EmojiList:type_name -> tutorial.EmojiInfo - 421, // 34: tutorial.UserInfo.SetEmoji:type_name -> tutorial.UserInfo.SetEmojiEntry + 422, // 34: tutorial.UserInfo.SetEmoji:type_name -> tutorial.UserInfo.SetEmojiEntry 2, // 35: tutorial.ResSetName.ResultCode:type_name -> tutorial.RES_CODE 2, // 36: tutorial.ResSetPetName.ResultCode:type_name -> tutorial.RES_CODE 2, // 37: tutorial.ResBuyEnergy.Code:type_name -> tutorial.RES_CODE @@ -24667,15 +24727,15 @@ var file_proto_Gameapi_proto_depIdxs = []int32{ 2, // 39: tutorial.ResGetHandbookReward.Code:type_name -> tutorial.RES_CODE 86, // 40: tutorial.Handbook.Handbooks:type_name -> tutorial.HandbookInfo 2, // 41: tutorial.ResHandbookAllReward.Code:type_name -> tutorial.RES_CODE - 422, // 42: tutorial.ReqRewardOrder.mChessData:type_name -> tutorial.ReqRewardOrder.MChessDataEntry + 423, // 42: tutorial.ReqRewardOrder.mChessData:type_name -> tutorial.ReqRewardOrder.MChessDataEntry 2, // 43: tutorial.ResRewardOrder.Code:type_name -> tutorial.RES_CODE 2, // 44: tutorial.ResDelOrder.Code:type_name -> tutorial.RES_CODE 96, // 45: tutorial.ResOrderList.OrderList:type_name -> tutorial.Order 2, // 46: tutorial.ResDecorate.Code:type_name -> tutorial.RES_CODE 2, // 47: tutorial.ResDecorateAll.Code:type_name -> tutorial.RES_CODE 104, // 48: tutorial.ResCardInfo.CardList:type_name -> tutorial.Card - 423, // 49: tutorial.ResCardInfo.AllCard:type_name -> tutorial.ResCardInfo.AllCardEntry - 424, // 50: tutorial.ResCardInfo.Handbook:type_name -> tutorial.ResCardInfo.HandbookEntry + 424, // 49: tutorial.ResCardInfo.AllCard:type_name -> tutorial.ResCardInfo.AllCardEntry + 425, // 50: tutorial.ResCardInfo.Handbook:type_name -> tutorial.ResCardInfo.HandbookEntry 2, // 51: tutorial.ResCardSeasonFirstReward.Code:type_name -> tutorial.RES_CODE 2, // 52: tutorial.ResCardHandbookReward.Code:type_name -> tutorial.RES_CODE 2, // 53: tutorial.ResMasterCard.Code:type_name -> tutorial.RES_CODE @@ -24693,12 +24753,12 @@ var file_proto_Gameapi_proto_depIdxs = []int32{ 2, // 65: tutorial.ResRefuseCardExchange.Code:type_name -> tutorial.RES_CODE 2, // 66: tutorial.ResGetFriendCard.Code:type_name -> tutorial.RES_CODE 2, // 67: tutorial.ResGuideReward.Code:type_name -> tutorial.RES_CODE - 425, // 68: tutorial.ResGuildInfo.Reward:type_name -> tutorial.ResGuildInfo.RewardEntry - 426, // 69: tutorial.ResGuideInfo.Reward:type_name -> tutorial.ResGuideInfo.RewardEntry + 426, // 68: tutorial.ResGuildInfo.Reward:type_name -> tutorial.ResGuildInfo.RewardEntry + 427, // 69: tutorial.ResGuideInfo.Reward:type_name -> tutorial.ResGuideInfo.RewardEntry 147, // 70: tutorial.ResItemPop.Items:type_name -> tutorial.ItemInfo 148, // 71: tutorial.ResItemPop.CardPacks:type_name -> tutorial.CardPack - 427, // 72: tutorial.ResDailyTask.WeekReward:type_name -> tutorial.ResDailyTask.WeekRewardEntry - 428, // 73: tutorial.ResDailyTask.DailyTask:type_name -> tutorial.ResDailyTask.DailyTaskEntry + 428, // 72: tutorial.ResDailyTask.WeekReward:type_name -> tutorial.ResDailyTask.WeekRewardEntry + 429, // 73: tutorial.ResDailyTask.DailyTask:type_name -> tutorial.ResDailyTask.DailyTaskEntry 147, // 74: tutorial.DailyWeek.Items:type_name -> tutorial.ItemInfo 152, // 75: tutorial.DailyTask.Progress:type_name -> tutorial.QuestProgress 147, // 76: tutorial.DailyTask.Items:type_name -> tutorial.ItemInfo @@ -24719,23 +24779,23 @@ var file_proto_Gameapi_proto_depIdxs = []int32{ 2, // 91: tutorial.ResGetMonthLoginReward.Code:type_name -> tutorial.RES_CODE 177, // 92: tutorial.ResActivity.ActiveList:type_name -> tutorial.ActivityInfo 2, // 93: tutorial.ResActivityReward.Code:type_name -> tutorial.RES_CODE - 429, // 94: tutorial.ResLimitEvent.LimitEventList:type_name -> tutorial.ResLimitEvent.LimitEventListEntry - 430, // 95: tutorial.ResLimitEventProgress.ProgressReward:type_name -> tutorial.ResLimitEventProgress.ProgressRewardEntry + 430, // 94: tutorial.ResLimitEvent.LimitEventList:type_name -> tutorial.ResLimitEvent.LimitEventListEntry + 431, // 95: tutorial.ResLimitEventProgress.ProgressReward:type_name -> tutorial.ResLimitEventProgress.ProgressRewardEntry 2, // 96: tutorial.ResLimitEventReward.Code:type_name -> tutorial.RES_CODE 2, // 97: tutorial.ResSelectLimitEvent.Code:type_name -> tutorial.RES_CODE - 431, // 98: tutorial.LimitEvent.Param:type_name -> tutorial.LimitEvent.ParamEntry - 432, // 99: tutorial.ReqLimitEventLuckyCat.mChessData:type_name -> tutorial.ReqLimitEventLuckyCat.MChessDataEntry + 432, // 98: tutorial.LimitEvent.Param:type_name -> tutorial.LimitEvent.ParamEntry + 433, // 99: tutorial.ReqLimitEventLuckyCat.mChessData:type_name -> tutorial.ReqLimitEventLuckyCat.MChessDataEntry 2, // 100: tutorial.ResLimitEventLuckyCat.Code:type_name -> tutorial.RES_CODE 2, // 101: tutorial.ResLimitSenceReward.Code:type_name -> tutorial.RES_CODE 147, // 102: tutorial.ResChessRainReward.Items:type_name -> tutorial.ItemInfo 2, // 103: tutorial.ResFastProduceReward.Code:type_name -> tutorial.RES_CODE 2, // 104: tutorial.ResCatTrickReward.Code:type_name -> tutorial.RES_CODE 202, // 105: tutorial.ResSearchPlayer.List:type_name -> tutorial.ResPlayerSimple - 433, // 106: tutorial.ResPlayerSimple.Emoji:type_name -> tutorial.ResPlayerSimple.EmojiEntry + 434, // 106: tutorial.ResPlayerSimple.Emoji:type_name -> tutorial.ResPlayerSimple.EmojiEntry 202, // 107: tutorial.ResFriendLog.Player:type_name -> tutorial.ResPlayerSimple 204, // 108: tutorial.NotifyFriendLog.info:type_name -> tutorial.ResFriendLog 207, // 109: tutorial.NotifyFriendCard.Info:type_name -> tutorial.ResFriendCard - 434, // 110: tutorial.ResKv.kv:type_name -> tutorial.ResKv.KvEntry + 435, // 110: tutorial.ResKv.kv:type_name -> tutorial.ResKv.KvEntry 202, // 111: tutorial.ResFriendRecommend.List:type_name -> tutorial.ResPlayerSimple 2, // 112: tutorial.ResFriendIgnore.Code:type_name -> tutorial.RES_CODE 202, // 113: tutorial.ResFriendList.FriendList:type_name -> tutorial.ResPlayerSimple @@ -24753,26 +24813,26 @@ var file_proto_Gameapi_proto_depIdxs = []int32{ 202, // 125: tutorial.ResAgreeFriend.Player:type_name -> tutorial.ResPlayerSimple 2, // 126: tutorial.ResRefuseFriend.Code:type_name -> tutorial.RES_CODE 2, // 127: tutorial.ResDelFriend.Code:type_name -> tutorial.RES_CODE - 435, // 128: tutorial.ResRank.RankList:type_name -> tutorial.ResRank.RankListEntry - 436, // 129: tutorial.ResMailList.MailList:type_name -> tutorial.ResMailList.MailListEntry + 436, // 128: tutorial.ResRank.RankList:type_name -> tutorial.ResRank.RankListEntry + 437, // 129: tutorial.ResMailList.MailList:type_name -> tutorial.ResMailList.MailListEntry 147, // 130: tutorial.MailInfo.Items:type_name -> tutorial.ItemInfo 244, // 131: tutorial.MailNotify.Info:type_name -> tutorial.MailInfo 2, // 132: tutorial.ResReadMail.Code:type_name -> tutorial.RES_CODE 2, // 133: tutorial.ResGetMailReward.Code:type_name -> tutorial.RES_CODE 2, // 134: tutorial.ResDeleteMail.Code:type_name -> tutorial.RES_CODE - 437, // 135: tutorial.ResCharge.SpecialShop:type_name -> tutorial.ResCharge.SpecialShopEntry - 438, // 136: tutorial.ResCharge.ChessShop:type_name -> tutorial.ResCharge.ChessShopEntry - 439, // 137: tutorial.ResCharge.Gift:type_name -> tutorial.ResCharge.GiftEntry + 438, // 135: tutorial.ResCharge.SpecialShop:type_name -> tutorial.ResCharge.SpecialShopEntry + 439, // 136: tutorial.ResCharge.ChessShop:type_name -> tutorial.ResCharge.ChessShopEntry + 440, // 137: tutorial.ResCharge.Gift:type_name -> tutorial.ResCharge.GiftEntry 253, // 138: tutorial.ResCharge.Wish:type_name -> tutorial.WishList 2, // 139: tutorial.ResAddWish.Code:type_name -> tutorial.RES_CODE 2, // 140: tutorial.ResGetWish.Code:type_name -> tutorial.RES_CODE 2, // 141: tutorial.ResSendWishBeg.Code:type_name -> tutorial.RES_CODE 2, // 142: tutorial.ResFreeShop.Code:type_name -> tutorial.RES_CODE 2, // 143: tutorial.ResBuyChessShop.Code:type_name -> tutorial.RES_CODE - 440, // 144: tutorial.ReqBuyChessShop2.mChessData:type_name -> tutorial.ReqBuyChessShop2.MChessDataEntry + 441, // 144: tutorial.ReqBuyChessShop2.mChessData:type_name -> tutorial.ReqBuyChessShop2.MChessDataEntry 2, // 145: tutorial.ResBuyChessShop2.Code:type_name -> tutorial.RES_CODE 2, // 146: tutorial.ResRefreshChessShop.Code:type_name -> tutorial.RES_CODE - 441, // 147: tutorial.ResEndless.EndlessList:type_name -> tutorial.ResEndless.EndlessListEntry + 442, // 147: tutorial.ResEndless.EndlessList:type_name -> tutorial.ResEndless.EndlessListEntry 147, // 148: tutorial.ResEndlessInfo.Items:type_name -> tutorial.ItemInfo 2, // 149: tutorial.ResEndlessReward.Code:type_name -> tutorial.RES_CODE 2, // 150: tutorial.ResPiggyBankReward.Code:type_name -> tutorial.RES_CODE @@ -24780,101 +24840,103 @@ var file_proto_Gameapi_proto_depIdxs = []int32{ 2, // 152: tutorial.ResShippingOrder.Code:type_name -> tutorial.RES_CODE 2, // 153: tutorial.ResChampshipReward.Code:type_name -> tutorial.RES_CODE 2, // 154: tutorial.ResChampshipRankReward.Code:type_name -> tutorial.RES_CODE - 442, // 155: tutorial.ResChampshipRank.RankList:type_name -> tutorial.ResChampshipRank.RankListEntry - 443, // 156: tutorial.ResChampshipPreRank.RankList:type_name -> tutorial.ResChampshipPreRank.RankListEntry - 444, // 157: tutorial.ResNotifyCard.Card:type_name -> tutorial.ResNotifyCard.CardEntry - 445, // 158: tutorial.ResNotifyCard.Master:type_name -> tutorial.ResNotifyCard.MasterEntry - 446, // 159: tutorial.ResNotifyCard.Handbook:type_name -> tutorial.ResNotifyCard.HandbookEntry + 443, // 155: tutorial.ResChampshipRank.RankList:type_name -> tutorial.ResChampshipRank.RankListEntry + 444, // 156: tutorial.ResChampshipPreRank.RankList:type_name -> tutorial.ResChampshipPreRank.RankListEntry + 445, // 157: tutorial.ResNotifyCard.Card:type_name -> tutorial.ResNotifyCard.CardEntry + 446, // 158: tutorial.ResNotifyCard.Master:type_name -> tutorial.ResNotifyCard.MasterEntry + 447, // 159: tutorial.ResNotifyCard.Handbook:type_name -> tutorial.ResNotifyCard.HandbookEntry 2, // 160: tutorial.ResSetFacebookUrl.Code:type_name -> tutorial.RES_CODE - 447, // 161: tutorial.ResMining.Map:type_name -> tutorial.ResMining.MapEntry - 448, // 162: tutorial.ReqMiningTake.Map:type_name -> tutorial.ReqMiningTake.MapEntry + 448, // 161: tutorial.ResMining.Map:type_name -> tutorial.ResMining.MapEntry + 449, // 162: tutorial.ReqMiningTake.Map:type_name -> tutorial.ReqMiningTake.MapEntry 2, // 163: tutorial.ResMiningTake.Code:type_name -> tutorial.RES_CODE 2, // 164: tutorial.ResMiningReward.Code:type_name -> tutorial.RES_CODE - 449, // 165: tutorial.ResActRed.Red:type_name -> tutorial.ResActRed.RedEntry + 450, // 165: tutorial.ResActRed.Red:type_name -> tutorial.ResActRed.RedEntry 177, // 166: tutorial.ActivityNotify.Info:type_name -> tutorial.ActivityInfo - 450, // 167: tutorial.ResItem.Item:type_name -> tutorial.ResItem.ItemEntry - 451, // 168: tutorial.ItemNotify.Item:type_name -> tutorial.ItemNotify.ItemEntry + 451, // 167: tutorial.ResItem.Item:type_name -> tutorial.ResItem.ItemEntry + 452, // 168: tutorial.ItemNotify.Item:type_name -> tutorial.ItemNotify.ItemEntry 323, // 169: tutorial.ResGuessColor.MapList:type_name -> tutorial.GuessColorInfo - 452, // 170: tutorial.ResGuessColor.OMap:type_name -> tutorial.ResGuessColor.OMapEntry + 453, // 170: tutorial.ResGuessColor.OMap:type_name -> tutorial.ResGuessColor.OMapEntry 321, // 171: tutorial.ResGuessColor.Opponent:type_name -> tutorial.opponent 323, // 172: tutorial.ReqGuessColorTake.Map:type_name -> tutorial.GuessColorInfo - 453, // 173: tutorial.ReqGuessColorTake.OMap:type_name -> tutorial.ReqGuessColorTake.OMapEntry - 454, // 174: tutorial.GuessColorInfo.Map:type_name -> tutorial.GuessColorInfo.MapEntry + 454, // 173: tutorial.ReqGuessColorTake.OMap:type_name -> tutorial.ReqGuessColorTake.OMapEntry + 455, // 174: tutorial.GuessColorInfo.Map:type_name -> tutorial.GuessColorInfo.MapEntry 2, // 175: tutorial.ResGuessColorTake.Code:type_name -> tutorial.RES_CODE 2, // 176: tutorial.ResGuessColorReward.Code:type_name -> tutorial.RES_CODE 329, // 177: tutorial.ResRace.Opponent:type_name -> tutorial.raceopponent 2, // 178: tutorial.ResRaceStart.Code:type_name -> tutorial.RES_CODE 2, // 179: tutorial.ResRaceReward.Code:type_name -> tutorial.RES_CODE 147, // 180: tutorial.ResPlayroom.Items:type_name -> tutorial.ItemInfo - 357, // 181: tutorial.ResPlayroom.Opponent:type_name -> tutorial.RoomOpponent - 356, // 182: tutorial.ResPlayroom.Friend:type_name -> tutorial.FriendRoom - 455, // 183: tutorial.ResPlayroom.Playroom:type_name -> tutorial.ResPlayroom.PlayroomEntry - 456, // 184: tutorial.ResPlayroom.Mood:type_name -> tutorial.ResPlayroom.MoodEntry + 358, // 181: tutorial.ResPlayroom.Opponent:type_name -> tutorial.RoomOpponent + 357, // 182: tutorial.ResPlayroom.Friend:type_name -> tutorial.FriendRoom + 456, // 183: tutorial.ResPlayroom.Playroom:type_name -> tutorial.ResPlayroom.PlayroomEntry + 457, // 184: tutorial.ResPlayroom.Mood:type_name -> tutorial.ResPlayroom.MoodEntry 147, // 185: tutorial.ResPlayroom.LoseItem:type_name -> tutorial.ItemInfo - 354, // 186: tutorial.ResPlayroom.Chip:type_name -> tutorial.ChipInfo - 457, // 187: tutorial.ResPlayroom.Physiology:type_name -> tutorial.ResPlayroom.PhysiologyEntry - 458, // 188: tutorial.ResPlayroom.Dress:type_name -> tutorial.ResPlayroom.DressEntry - 459, // 189: tutorial.ResPlayroom.DressSet:type_name -> tutorial.ResPlayroom.DressSetEntry - 460, // 190: tutorial.ResPlayroom.DailyTask:type_name -> tutorial.ResPlayroom.DailyTaskEntry - 2, // 191: tutorial.ResPlayroomTask.Code:type_name -> tutorial.RES_CODE - 2, // 192: tutorial.ResPlayroomTaskReward.Code:type_name -> tutorial.RES_CODE - 2, // 193: tutorial.ResPlayroomUnlock.Code:type_name -> tutorial.RES_CODE - 2, // 194: tutorial.ResPlayroomUpvote.Code:type_name -> tutorial.RES_CODE - 461, // 195: tutorial.ReqPlayroomDressSet.DressSet:type_name -> tutorial.ReqPlayroomDressSet.DressSetEntry - 2, // 196: tutorial.ResPlayroomDressSet.Code:type_name -> tutorial.RES_CODE - 2, // 197: tutorial.ResPlayroomPetAirSet.Code:type_name -> tutorial.RES_CODE - 2, // 198: tutorial.ResPlayroomWrokOutline.Code:type_name -> tutorial.RES_CODE - 147, // 199: tutorial.NotifyPlayroomLose.LoseItem:type_name -> tutorial.ItemInfo - 354, // 200: tutorial.NotifyPlayroomLose.Chip:type_name -> tutorial.ChipInfo - 462, // 201: tutorial.NotifyPlayroomMood.Mood:type_name -> tutorial.NotifyPlayroomMood.MoodEntry - 463, // 202: tutorial.NotifyPlayroomMood.Physiology:type_name -> tutorial.NotifyPlayroomMood.PhysiologyEntry - 464, // 203: tutorial.ResPlayroomInfo.Playroom:type_name -> tutorial.ResPlayroomInfo.PlayroomEntry - 465, // 204: tutorial.ResPlayroomInfo.Items:type_name -> tutorial.ResPlayroomInfo.ItemsEntry - 466, // 205: tutorial.ResPlayroomInfo.flip:type_name -> tutorial.ResPlayroomInfo.FlipEntry - 354, // 206: tutorial.ResPlayroomInfo.Chip:type_name -> tutorial.ChipInfo - 467, // 207: tutorial.ResPlayroomInfo.Emoji:type_name -> tutorial.ResPlayroomInfo.EmojiEntry - 2, // 208: tutorial.ResPlayroomFlip.Code:type_name -> tutorial.RES_CODE - 2, // 209: tutorial.ResPlayroomFlipReward.Code:type_name -> tutorial.RES_CODE - 2, // 210: tutorial.ResPlayroomGame.Code:type_name -> tutorial.RES_CODE - 468, // 211: tutorial.ResPlayroomGame.Items:type_name -> tutorial.ResPlayroomGame.ItemsEntry - 2, // 212: tutorial.ResPlayroomInteract.Code:type_name -> tutorial.RES_CODE - 469, // 213: tutorial.ReqPlayroomSetRoom.Playroom:type_name -> tutorial.ReqPlayroomSetRoom.PlayroomEntry - 2, // 214: tutorial.ResPlayroomSetRoom.Code:type_name -> tutorial.RES_CODE - 2, // 215: tutorial.ResPlayroomSelectReward.Code:type_name -> tutorial.RES_CODE - 2, // 216: tutorial.ResPlayroomLose.Code:type_name -> tutorial.RES_CODE - 2, // 217: tutorial.ResPlayroomWork.Code:type_name -> tutorial.RES_CODE - 2, // 218: tutorial.ResPlayroomRest.Code:type_name -> tutorial.RES_CODE - 2, // 219: tutorial.ResPlayroomDraw.Code:type_name -> tutorial.RES_CODE - 2, // 220: tutorial.ResPlayroomChip.Code:type_name -> tutorial.RES_CODE - 2, // 221: tutorial.ResPlayroomBuyItem.Code:type_name -> tutorial.RES_CODE - 2, // 222: tutorial.ResPlayroomShop.Code:type_name -> tutorial.RES_CODE - 388, // 223: tutorial.ResFriendTreasure.List:type_name -> tutorial.TreasureInfo - 388, // 224: tutorial.ReqFriendTreasureStart.List:type_name -> tutorial.TreasureInfo - 2, // 225: tutorial.ResFriendTreasureStart.Code:type_name -> tutorial.RES_CODE - 2, // 226: tutorial.ResFriendTreasureEnd.Code:type_name -> tutorial.RES_CODE - 2, // 227: tutorial.ResFriendTreasureFilp.Code:type_name -> tutorial.RES_CODE - 399, // 228: tutorial.ResCollectInfo.Items:type_name -> tutorial.CollectItem - 147, // 229: tutorial.CollectItem.Items:type_name -> tutorial.ItemInfo - 2, // 230: tutorial.ResCollect.Code:type_name -> tutorial.RES_CODE - 150, // 231: tutorial.ResDailyTask.WeekRewardEntry.value:type_name -> tutorial.DailyWeek - 151, // 232: tutorial.ResDailyTask.DailyTaskEntry.value:type_name -> tutorial.DailyTask - 187, // 233: tutorial.ResLimitEvent.LimitEventListEntry.value:type_name -> tutorial.LimitEvent - 202, // 234: tutorial.ResRank.RankListEntry.value:type_name -> tutorial.ResPlayerSimple - 244, // 235: tutorial.ResMailList.MailListEntry.value:type_name -> tutorial.MailInfo - 260, // 236: tutorial.ResCharge.SpecialShopEntry.value:type_name -> tutorial.ResSpecialShop - 261, // 237: tutorial.ResCharge.ChessShopEntry.value:type_name -> tutorial.ResChessShop - 272, // 238: tutorial.ResEndless.EndlessListEntry.value:type_name -> tutorial.ResEndlessInfo - 203, // 239: tutorial.ResChampshipRank.RankListEntry.value:type_name -> tutorial.ResPlayerRank - 203, // 240: tutorial.ResChampshipPreRank.RankListEntry.value:type_name -> tutorial.ResPlayerRank - 344, // 241: tutorial.ResPlayroom.DressEntry.value:type_name -> tutorial.PlayroomDress - 151, // 242: tutorial.ResPlayroom.DailyTaskEntry.value:type_name -> tutorial.DailyTask - 147, // 243: tutorial.ResPlayroomInfo.ItemsEntry.value:type_name -> tutorial.ItemInfo - 147, // 244: tutorial.ResPlayroomGame.ItemsEntry.value:type_name -> tutorial.ItemInfo - 245, // [245:245] is the sub-list for method output_type - 245, // [245:245] is the sub-list for method input_type - 245, // [245:245] is the sub-list for extension type_name - 245, // [245:245] is the sub-list for extension extendee - 0, // [0:245] is the sub-list for field type_name + 355, // 186: tutorial.ResPlayroom.Chip:type_name -> tutorial.ChipInfo + 458, // 187: tutorial.ResPlayroom.Physiology:type_name -> tutorial.ResPlayroom.PhysiologyEntry + 459, // 188: tutorial.ResPlayroom.Dress:type_name -> tutorial.ResPlayroom.DressEntry + 460, // 189: tutorial.ResPlayroom.DressSet:type_name -> tutorial.ResPlayroom.DressSetEntry + 461, // 190: tutorial.ResPlayroom.DailyTask:type_name -> tutorial.ResPlayroom.DailyTaskEntry + 462, // 191: tutorial.NotifyPlayroomTask.DailyTask:type_name -> tutorial.NotifyPlayroomTask.DailyTaskEntry + 2, // 192: tutorial.ResPlayroomTask.Code:type_name -> tutorial.RES_CODE + 2, // 193: tutorial.ResPlayroomTaskReward.Code:type_name -> tutorial.RES_CODE + 2, // 194: tutorial.ResPlayroomUnlock.Code:type_name -> tutorial.RES_CODE + 2, // 195: tutorial.ResPlayroomUpvote.Code:type_name -> tutorial.RES_CODE + 463, // 196: tutorial.ReqPlayroomDressSet.DressSet:type_name -> tutorial.ReqPlayroomDressSet.DressSetEntry + 2, // 197: tutorial.ResPlayroomDressSet.Code:type_name -> tutorial.RES_CODE + 2, // 198: tutorial.ResPlayroomPetAirSet.Code:type_name -> tutorial.RES_CODE + 2, // 199: tutorial.ResPlayroomWrokOutline.Code:type_name -> tutorial.RES_CODE + 147, // 200: tutorial.NotifyPlayroomLose.LoseItem:type_name -> tutorial.ItemInfo + 355, // 201: tutorial.NotifyPlayroomLose.Chip:type_name -> tutorial.ChipInfo + 464, // 202: tutorial.NotifyPlayroomMood.Mood:type_name -> tutorial.NotifyPlayroomMood.MoodEntry + 465, // 203: tutorial.NotifyPlayroomMood.Physiology:type_name -> tutorial.NotifyPlayroomMood.PhysiologyEntry + 466, // 204: tutorial.ResPlayroomInfo.Playroom:type_name -> tutorial.ResPlayroomInfo.PlayroomEntry + 467, // 205: tutorial.ResPlayroomInfo.Items:type_name -> tutorial.ResPlayroomInfo.ItemsEntry + 468, // 206: tutorial.ResPlayroomInfo.flip:type_name -> tutorial.ResPlayroomInfo.FlipEntry + 355, // 207: tutorial.ResPlayroomInfo.Chip:type_name -> tutorial.ChipInfo + 469, // 208: tutorial.ResPlayroomInfo.Emoji:type_name -> tutorial.ResPlayroomInfo.EmojiEntry + 2, // 209: tutorial.ResPlayroomFlip.Code:type_name -> tutorial.RES_CODE + 2, // 210: tutorial.ResPlayroomFlipReward.Code:type_name -> tutorial.RES_CODE + 2, // 211: tutorial.ResPlayroomGame.Code:type_name -> tutorial.RES_CODE + 470, // 212: tutorial.ResPlayroomGame.Items:type_name -> tutorial.ResPlayroomGame.ItemsEntry + 2, // 213: tutorial.ResPlayroomInteract.Code:type_name -> tutorial.RES_CODE + 471, // 214: tutorial.ReqPlayroomSetRoom.Playroom:type_name -> tutorial.ReqPlayroomSetRoom.PlayroomEntry + 2, // 215: tutorial.ResPlayroomSetRoom.Code:type_name -> tutorial.RES_CODE + 2, // 216: tutorial.ResPlayroomSelectReward.Code:type_name -> tutorial.RES_CODE + 2, // 217: tutorial.ResPlayroomLose.Code:type_name -> tutorial.RES_CODE + 2, // 218: tutorial.ResPlayroomWork.Code:type_name -> tutorial.RES_CODE + 2, // 219: tutorial.ResPlayroomRest.Code:type_name -> tutorial.RES_CODE + 2, // 220: tutorial.ResPlayroomDraw.Code:type_name -> tutorial.RES_CODE + 2, // 221: tutorial.ResPlayroomChip.Code:type_name -> tutorial.RES_CODE + 2, // 222: tutorial.ResPlayroomBuyItem.Code:type_name -> tutorial.RES_CODE + 2, // 223: tutorial.ResPlayroomShop.Code:type_name -> tutorial.RES_CODE + 389, // 224: tutorial.ResFriendTreasure.List:type_name -> tutorial.TreasureInfo + 389, // 225: tutorial.ReqFriendTreasureStart.List:type_name -> tutorial.TreasureInfo + 2, // 226: tutorial.ResFriendTreasureStart.Code:type_name -> tutorial.RES_CODE + 2, // 227: tutorial.ResFriendTreasureEnd.Code:type_name -> tutorial.RES_CODE + 2, // 228: tutorial.ResFriendTreasureFilp.Code:type_name -> tutorial.RES_CODE + 400, // 229: tutorial.ResCollectInfo.Items:type_name -> tutorial.CollectItem + 147, // 230: tutorial.CollectItem.Items:type_name -> tutorial.ItemInfo + 2, // 231: tutorial.ResCollect.Code:type_name -> tutorial.RES_CODE + 150, // 232: tutorial.ResDailyTask.WeekRewardEntry.value:type_name -> tutorial.DailyWeek + 151, // 233: tutorial.ResDailyTask.DailyTaskEntry.value:type_name -> tutorial.DailyTask + 187, // 234: tutorial.ResLimitEvent.LimitEventListEntry.value:type_name -> tutorial.LimitEvent + 202, // 235: tutorial.ResRank.RankListEntry.value:type_name -> tutorial.ResPlayerSimple + 244, // 236: tutorial.ResMailList.MailListEntry.value:type_name -> tutorial.MailInfo + 260, // 237: tutorial.ResCharge.SpecialShopEntry.value:type_name -> tutorial.ResSpecialShop + 261, // 238: tutorial.ResCharge.ChessShopEntry.value:type_name -> tutorial.ResChessShop + 272, // 239: tutorial.ResEndless.EndlessListEntry.value:type_name -> tutorial.ResEndlessInfo + 203, // 240: tutorial.ResChampshipRank.RankListEntry.value:type_name -> tutorial.ResPlayerRank + 203, // 241: tutorial.ResChampshipPreRank.RankListEntry.value:type_name -> tutorial.ResPlayerRank + 345, // 242: tutorial.ResPlayroom.DressEntry.value:type_name -> tutorial.PlayroomDress + 151, // 243: tutorial.ResPlayroom.DailyTaskEntry.value:type_name -> tutorial.DailyTask + 151, // 244: tutorial.NotifyPlayroomTask.DailyTaskEntry.value:type_name -> tutorial.DailyTask + 147, // 245: tutorial.ResPlayroomInfo.ItemsEntry.value:type_name -> tutorial.ItemInfo + 147, // 246: tutorial.ResPlayroomGame.ItemsEntry.value:type_name -> tutorial.ItemInfo + 247, // [247:247] is the sub-list for method output_type + 247, // [247:247] is the sub-list for method input_type + 247, // [247:247] is the sub-list for extension type_name + 247, // [247:247] is the sub-list for extension extendee + 0, // [0:247] is the sub-list for field type_name } func init() { file_proto_Gameapi_proto_init() } @@ -24888,7 +24950,7 @@ func file_proto_Gameapi_proto_init() { GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: unsafe.Slice(unsafe.StringData(file_proto_Gameapi_proto_rawDesc), len(file_proto_Gameapi_proto_rawDesc)), NumEnums: 9, - NumMessages: 461, + NumMessages: 463, NumExtensions: 0, NumServices: 0, },