5 Star 0 Fork 0

Md/gu

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
game_server_rpc.pb.go 101.58 KB
一键复制 编辑 原始数据 按行查看 历史
liyafei 提交于 2024-03-25 10:54 . 修复 mail rpc
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.28.1
// protoc v3.21.12
// source: game_server_rpc.proto
package gsrpc
import (
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
reflect "reflect"
sync "sync"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type K32V64 struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
K int32 `protobuf:"varint,1,opt,name=k,proto3" json:"k,omitempty"`
V int64 `protobuf:"varint,2,opt,name=v,proto3" json:"v,omitempty"`
}
func (x *K32V64) Reset() {
*x = K32V64{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *K32V64) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*K32V64) ProtoMessage() {}
func (x *K32V64) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use K32V64.ProtoReflect.Descriptor instead.
func (*K32V64) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{0}
}
func (x *K32V64) GetK() int32 {
if x != nil {
return x.K
}
return 0
}
func (x *K32V64) GetV() int64 {
if x != nil {
return x.V
}
return 0
}
type GmSendGMReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Gmid int32 `protobuf:"varint,1,opt,name=gmid,proto3" json:"gmid,omitempty"`
Params []string `protobuf:"bytes,2,rep,name=params,proto3" json:"params,omitempty"`
}
func (x *GmSendGMReq) Reset() {
*x = GmSendGMReq{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GmSendGMReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GmSendGMReq) ProtoMessage() {}
func (x *GmSendGMReq) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GmSendGMReq.ProtoReflect.Descriptor instead.
func (*GmSendGMReq) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{1}
}
func (x *GmSendGMReq) GetGmid() int32 {
if x != nil {
return x.Gmid
}
return 0
}
func (x *GmSendGMReq) GetParams() []string {
if x != nil {
return x.Params
}
return nil
}
type GmSendGMResp struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *GmSendGMResp) Reset() {
*x = GmSendGMResp{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GmSendGMResp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GmSendGMResp) ProtoMessage() {}
func (x *GmSendGMResp) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GmSendGMResp.ProtoReflect.Descriptor instead.
func (*GmSendGMResp) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{2}
}
type ExportRoleDataIn struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Rid int32 `protobuf:"varint,1,opt,name=rid,proto3" json:"rid,omitempty"`
}
func (x *ExportRoleDataIn) Reset() {
*x = ExportRoleDataIn{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ExportRoleDataIn) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ExportRoleDataIn) ProtoMessage() {}
func (x *ExportRoleDataIn) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ExportRoleDataIn.ProtoReflect.Descriptor instead.
func (*ExportRoleDataIn) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{3}
}
func (x *ExportRoleDataIn) GetRid() int32 {
if x != nil {
return x.Rid
}
return 0
}
type ExportRoleDataOut struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
Data []byte `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
}
func (x *ExportRoleDataOut) Reset() {
*x = ExportRoleDataOut{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ExportRoleDataOut) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ExportRoleDataOut) ProtoMessage() {}
func (x *ExportRoleDataOut) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ExportRoleDataOut.ProtoReflect.Descriptor instead.
func (*ExportRoleDataOut) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{4}
}
func (x *ExportRoleDataOut) GetCode() int32 {
if x != nil {
return x.Code
}
return 0
}
func (x *ExportRoleDataOut) GetMessage() string {
if x != nil {
return x.Message
}
return ""
}
func (x *ExportRoleDataOut) GetData() []byte {
if x != nil {
return x.Data
}
return nil
}
type ImportRoleDataIn struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Uid int32 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
Rid int32 `protobuf:"varint,2,opt,name=rid,proto3" json:"rid,omitempty"`
Data []byte `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
}
func (x *ImportRoleDataIn) Reset() {
*x = ImportRoleDataIn{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ImportRoleDataIn) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ImportRoleDataIn) ProtoMessage() {}
func (x *ImportRoleDataIn) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ImportRoleDataIn.ProtoReflect.Descriptor instead.
func (*ImportRoleDataIn) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{5}
}
func (x *ImportRoleDataIn) GetUid() int32 {
if x != nil {
return x.Uid
}
return 0
}
func (x *ImportRoleDataIn) GetRid() int32 {
if x != nil {
return x.Rid
}
return 0
}
func (x *ImportRoleDataIn) GetData() []byte {
if x != nil {
return x.Data
}
return nil
}
type ImportRoleDataOut struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
}
func (x *ImportRoleDataOut) Reset() {
*x = ImportRoleDataOut{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ImportRoleDataOut) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ImportRoleDataOut) ProtoMessage() {}
func (x *ImportRoleDataOut) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ImportRoleDataOut.ProtoReflect.Descriptor instead.
func (*ImportRoleDataOut) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{6}
}
func (x *ImportRoleDataOut) GetCode() int32 {
if x != nil {
return x.Code
}
return 0
}
func (x *ImportRoleDataOut) GetMessage() string {
if x != nil {
return x.Message
}
return ""
}
//多语言邮件内容
type MailLanInfo struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Language string `protobuf:"bytes,1,opt,name=language,proto3" json:"language,omitempty"` // 对应语言
Header string `protobuf:"bytes,2,opt,name=header,proto3" json:"header,omitempty"` // 自定义标题
Content string `protobuf:"bytes,3,opt,name=content,proto3" json:"content,omitempty"` // 自定义内容
BackgroundUrl string `protobuf:"bytes,4,opt,name=backgroundUrl,proto3" json:"backgroundUrl,omitempty"`
}
func (x *MailLanInfo) Reset() {
*x = MailLanInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *MailLanInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*MailLanInfo) ProtoMessage() {}
func (x *MailLanInfo) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use MailLanInfo.ProtoReflect.Descriptor instead.
func (*MailLanInfo) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{7}
}
func (x *MailLanInfo) GetLanguage() string {
if x != nil {
return x.Language
}
return ""
}
func (x *MailLanInfo) GetHeader() string {
if x != nil {
return x.Header
}
return ""
}
func (x *MailLanInfo) GetContent() string {
if x != nil {
return x.Content
}
return ""
}
func (x *MailLanInfo) GetBackgroundUrl() string {
if x != nil {
return x.BackgroundUrl
}
return ""
}
// 发送角色邮件
type ServerArgsSendRoleMail struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Rids []int32 `protobuf:"varint,1,rep,packed,name=rids,proto3" json:"rids,omitempty"` // 角色Id集合
//int32 char_f=2; // 多语言Key
//int32 char_s=3; // 多语言Key
Items []*K32V64 `protobuf:"bytes,2,rep,name=items,proto3" json:"items,omitempty"` // 奖励物品
//repeated string lan=5;
//repeated string custom_title=6; // 自定义标题
//repeated string custom_content=7; // 自定义内容
MailLan []*MailLanInfo `protobuf:"bytes,3,rep,name=mail_lan,json=mailLan,proto3" json:"mail_lan,omitempty"` // 邮件标题内容,多语言列表
FirstType int32 `protobuf:"varint,4,opt,name=first_type,json=firstType,proto3" json:"first_type,omitempty"` // 大类
SecondType int32 `protobuf:"varint,5,opt,name=second_type,json=secondType,proto3" json:"second_type,omitempty"` // 小类
}
func (x *ServerArgsSendRoleMail) Reset() {
*x = ServerArgsSendRoleMail{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ServerArgsSendRoleMail) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ServerArgsSendRoleMail) ProtoMessage() {}
func (x *ServerArgsSendRoleMail) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ServerArgsSendRoleMail.ProtoReflect.Descriptor instead.
func (*ServerArgsSendRoleMail) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{8}
}
func (x *ServerArgsSendRoleMail) GetRids() []int32 {
if x != nil {
return x.Rids
}
return nil
}
func (x *ServerArgsSendRoleMail) GetItems() []*K32V64 {
if x != nil {
return x.Items
}
return nil
}
func (x *ServerArgsSendRoleMail) GetMailLan() []*MailLanInfo {
if x != nil {
return x.MailLan
}
return nil
}
func (x *ServerArgsSendRoleMail) GetFirstType() int32 {
if x != nil {
return x.FirstType
}
return 0
}
func (x *ServerArgsSendRoleMail) GetSecondType() int32 {
if x != nil {
return x.SecondType
}
return 0
}
type ServerReplySendRoleMail struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` // 错误码
Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` // 信息
}
func (x *ServerReplySendRoleMail) Reset() {
*x = ServerReplySendRoleMail{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ServerReplySendRoleMail) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ServerReplySendRoleMail) ProtoMessage() {}
func (x *ServerReplySendRoleMail) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ServerReplySendRoleMail.ProtoReflect.Descriptor instead.
func (*ServerReplySendRoleMail) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{9}
}
func (x *ServerReplySendRoleMail) GetCode() int32 {
if x != nil {
return x.Code
}
return 0
}
func (x *ServerReplySendRoleMail) GetMessage() string {
if x != nil {
return x.Message
}
return ""
}
// 发送区服邮件
type ServerArgsSendServMail struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
ServId int32 `protobuf:"varint,1,opt,name=serv_id,json=servId,proto3" json:"serv_id,omitempty"` // 区服Id
Items []*K32V64 `protobuf:"bytes,2,rep,name=items,proto3" json:"items,omitempty"` // 奖励物品
MailLan []*MailLanInfo `protobuf:"bytes,3,rep,name=mail_lan,json=mailLan,proto3" json:"mail_lan,omitempty"` // 邮件标题内容,多语言列表
NeedLvMin int32 `protobuf:"varint,4,opt,name=need_lv_min,json=needLvMin,proto3" json:"need_lv_min,omitempty"` // 最小收到等级
NeedLvMax int32 `protobuf:"varint,5,opt,name=need_lv_max,json=needLvMax,proto3" json:"need_lv_max,omitempty"` // 最大收到等级
RegisteredBefore int64 `protobuf:"varint,6,opt,name=registered_before,json=registeredBefore,proto3" json:"registered_before,omitempty"` // 创角时间在此之前 13位时间戳(ms)
RegisteredAfter int64 `protobuf:"varint,7,opt,name=registered_after,json=registeredAfter,proto3" json:"registered_after,omitempty"` // 创角时间在此之后 13位时间戳(ms)
MailId int64 `protobuf:"varint,8,opt,name=mail_id,json=mailId,proto3" json:"mail_id,omitempty"` // 邮件id
FirstType int32 `protobuf:"varint,9,opt,name=first_type,json=firstType,proto3" json:"first_type,omitempty"` // 大类
SecondType int32 `protobuf:"varint,10,opt,name=second_type,json=secondType,proto3" json:"second_type,omitempty"` // 小类
}
func (x *ServerArgsSendServMail) Reset() {
*x = ServerArgsSendServMail{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[10]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ServerArgsSendServMail) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ServerArgsSendServMail) ProtoMessage() {}
func (x *ServerArgsSendServMail) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[10]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ServerArgsSendServMail.ProtoReflect.Descriptor instead.
func (*ServerArgsSendServMail) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{10}
}
func (x *ServerArgsSendServMail) GetServId() int32 {
if x != nil {
return x.ServId
}
return 0
}
func (x *ServerArgsSendServMail) GetItems() []*K32V64 {
if x != nil {
return x.Items
}
return nil
}
func (x *ServerArgsSendServMail) GetMailLan() []*MailLanInfo {
if x != nil {
return x.MailLan
}
return nil
}
func (x *ServerArgsSendServMail) GetNeedLvMin() int32 {
if x != nil {
return x.NeedLvMin
}
return 0
}
func (x *ServerArgsSendServMail) GetNeedLvMax() int32 {
if x != nil {
return x.NeedLvMax
}
return 0
}
func (x *ServerArgsSendServMail) GetRegisteredBefore() int64 {
if x != nil {
return x.RegisteredBefore
}
return 0
}
func (x *ServerArgsSendServMail) GetRegisteredAfter() int64 {
if x != nil {
return x.RegisteredAfter
}
return 0
}
func (x *ServerArgsSendServMail) GetMailId() int64 {
if x != nil {
return x.MailId
}
return 0
}
func (x *ServerArgsSendServMail) GetFirstType() int32 {
if x != nil {
return x.FirstType
}
return 0
}
func (x *ServerArgsSendServMail) GetSecondType() int32 {
if x != nil {
return x.SecondType
}
return 0
}
type ServerReplySendServMail struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` // 错误码
Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` // 信息
}
func (x *ServerReplySendServMail) Reset() {
*x = ServerReplySendServMail{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[11]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ServerReplySendServMail) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ServerReplySendServMail) ProtoMessage() {}
func (x *ServerReplySendServMail) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[11]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ServerReplySendServMail.ProtoReflect.Descriptor instead.
func (*ServerReplySendServMail) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{11}
}
func (x *ServerReplySendServMail) GetCode() int32 {
if x != nil {
return x.Code
}
return 0
}
func (x *ServerReplySendServMail) GetMessage() string {
if x != nil {
return x.Message
}
return ""
}
// 通知下线
type ServerArgsOffline struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Rid int32 `protobuf:"varint,1,opt,name=rid,proto3" json:"rid,omitempty"`
}
func (x *ServerArgsOffline) Reset() {
*x = ServerArgsOffline{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[12]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ServerArgsOffline) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ServerArgsOffline) ProtoMessage() {}
func (x *ServerArgsOffline) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[12]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ServerArgsOffline.ProtoReflect.Descriptor instead.
func (*ServerArgsOffline) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{12}
}
func (x *ServerArgsOffline) GetRid() int32 {
if x != nil {
return x.Rid
}
return 0
}
type ServerReplyOffline struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *ServerReplyOffline) Reset() {
*x = ServerReplyOffline{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[13]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ServerReplyOffline) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ServerReplyOffline) ProtoMessage() {}
func (x *ServerReplyOffline) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[13]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ServerReplyOffline.ProtoReflect.Descriptor instead.
func (*ServerReplyOffline) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{13}
}
// 充值推送
type ServerArgsRechargePush struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
OrderId string `protobuf:"bytes,1,opt,name=order_id,json=orderId,proto3" json:"order_id,omitempty"` // 订单Id
PackageType int32 `protobuf:"varint,2,opt,name=package_type,json=packageType,proto3" json:"package_type,omitempty"` // 包类型
PayType string `protobuf:"bytes,3,opt,name=pay_type,json=payType,proto3" json:"pay_type,omitempty"` // 支付类型
SdkProductId string `protobuf:"bytes,4,opt,name=sdk_product_id,json=sdkProductId,proto3" json:"sdk_product_id,omitempty"` // SDK商品Id
ProductId int32 `protobuf:"varint,5,opt,name=product_id,json=productId,proto3" json:"product_id,omitempty"` // SDK商品Id
Rid int32 `protobuf:"varint,6,opt,name=rid,proto3" json:"rid,omitempty"` // 角色Id
CheckAmount bool `protobuf:"varint,7,opt,name=check_amount,json=checkAmount,proto3" json:"check_amount,omitempty"`
Amount string `protobuf:"bytes,8,opt,name=amount,proto3" json:"amount,omitempty"`
}
func (x *ServerArgsRechargePush) Reset() {
*x = ServerArgsRechargePush{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[14]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ServerArgsRechargePush) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ServerArgsRechargePush) ProtoMessage() {}
func (x *ServerArgsRechargePush) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[14]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ServerArgsRechargePush.ProtoReflect.Descriptor instead.
func (*ServerArgsRechargePush) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{14}
}
func (x *ServerArgsRechargePush) GetOrderId() string {
if x != nil {
return x.OrderId
}
return ""
}
func (x *ServerArgsRechargePush) GetPackageType() int32 {
if x != nil {
return x.PackageType
}
return 0
}
func (x *ServerArgsRechargePush) GetPayType() string {
if x != nil {
return x.PayType
}
return ""
}
func (x *ServerArgsRechargePush) GetSdkProductId() string {
if x != nil {
return x.SdkProductId
}
return ""
}
func (x *ServerArgsRechargePush) GetProductId() int32 {
if x != nil {
return x.ProductId
}
return 0
}
func (x *ServerArgsRechargePush) GetRid() int32 {
if x != nil {
return x.Rid
}
return 0
}
func (x *ServerArgsRechargePush) GetCheckAmount() bool {
if x != nil {
return x.CheckAmount
}
return false
}
func (x *ServerArgsRechargePush) GetAmount() string {
if x != nil {
return x.Amount
}
return ""
}
type ServerReplyRechargePush struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` // 错误码
Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` // 信息
}
func (x *ServerReplyRechargePush) Reset() {
*x = ServerReplyRechargePush{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[15]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ServerReplyRechargePush) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ServerReplyRechargePush) ProtoMessage() {}
func (x *ServerReplyRechargePush) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[15]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ServerReplyRechargePush.ProtoReflect.Descriptor instead.
func (*ServerReplyRechargePush) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{15}
}
func (x *ServerReplyRechargePush) GetCode() int32 {
if x != nil {
return x.Code
}
return 0
}
func (x *ServerReplyRechargePush) GetMessage() string {
if x != nil {
return x.Message
}
return ""
}
// 时间跳跃
type ServerArgsTimeJump struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Time string `protobuf:"bytes,1,opt,name=time,proto3" json:"time,omitempty"` // time str
Cancel bool `protobuf:"varint,2,opt,name=cancel,proto3" json:"cancel,omitempty"` // 取消
}
func (x *ServerArgsTimeJump) Reset() {
*x = ServerArgsTimeJump{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[16]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ServerArgsTimeJump) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ServerArgsTimeJump) ProtoMessage() {}
func (x *ServerArgsTimeJump) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[16]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ServerArgsTimeJump.ProtoReflect.Descriptor instead.
func (*ServerArgsTimeJump) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{16}
}
func (x *ServerArgsTimeJump) GetTime() string {
if x != nil {
return x.Time
}
return ""
}
func (x *ServerArgsTimeJump) GetCancel() bool {
if x != nil {
return x.Cancel
}
return false
}
type ServerReplyTimeJump struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` // 错误码
Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` // 信息
}
func (x *ServerReplyTimeJump) Reset() {
*x = ServerReplyTimeJump{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[17]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ServerReplyTimeJump) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ServerReplyTimeJump) ProtoMessage() {}
func (x *ServerReplyTimeJump) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[17]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ServerReplyTimeJump.ProtoReflect.Descriptor instead.
func (*ServerReplyTimeJump) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{17}
}
func (x *ServerReplyTimeJump) GetCode() int32 {
if x != nil {
return x.Code
}
return 0
}
func (x *ServerReplyTimeJump) GetMessage() string {
if x != nil {
return x.Message
}
return ""
}
// 未创角的用户列表
type NotInited struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Cuid string `protobuf:"bytes,1,opt,name=cuid,proto3" json:"cuid,omitempty"`
Rid int32 `protobuf:"varint,2,opt,name=rid,proto3" json:"rid,omitempty"`
}
func (x *NotInited) Reset() {
*x = NotInited{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[18]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *NotInited) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*NotInited) ProtoMessage() {}
func (x *NotInited) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[18]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use NotInited.ProtoReflect.Descriptor instead.
func (*NotInited) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{18}
}
func (x *NotInited) GetCuid() string {
if x != nil {
return x.Cuid
}
return ""
}
func (x *NotInited) GetRid() int32 {
if x != nil {
return x.Rid
}
return 0
}
type GetNotInitedRidsReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *GetNotInitedRidsReq) Reset() {
*x = GetNotInitedRidsReq{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[19]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GetNotInitedRidsReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GetNotInitedRidsReq) ProtoMessage() {}
func (x *GetNotInitedRidsReq) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[19]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GetNotInitedRidsReq.ProtoReflect.Descriptor instead.
func (*GetNotInitedRidsReq) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{19}
}
type GetNotInitedRidsResp struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Ids []*NotInited `protobuf:"bytes,1,rep,name=ids,proto3" json:"ids,omitempty"`
}
func (x *GetNotInitedRidsResp) Reset() {
*x = GetNotInitedRidsResp{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[20]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GetNotInitedRidsResp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GetNotInitedRidsResp) ProtoMessage() {}
func (x *GetNotInitedRidsResp) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[20]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GetNotInitedRidsResp.ProtoReflect.Descriptor instead.
func (*GetNotInitedRidsResp) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{20}
}
func (x *GetNotInitedRidsResp) GetIds() []*NotInited {
if x != nil {
return x.Ids
}
return nil
}
// 删除未创角的用户数据
type DeleteNotInitedRidReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Rid int32 `protobuf:"varint,1,opt,name=rid,proto3" json:"rid,omitempty"`
}
func (x *DeleteNotInitedRidReq) Reset() {
*x = DeleteNotInitedRidReq{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[21]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DeleteNotInitedRidReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DeleteNotInitedRidReq) ProtoMessage() {}
func (x *DeleteNotInitedRidReq) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[21]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DeleteNotInitedRidReq.ProtoReflect.Descriptor instead.
func (*DeleteNotInitedRidReq) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{21}
}
func (x *DeleteNotInitedRidReq) GetRid() int32 {
if x != nil {
return x.Rid
}
return 0
}
type DeleteNotInitedRidResp struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *DeleteNotInitedRidResp) Reset() {
*x = DeleteNotInitedRidResp{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[22]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DeleteNotInitedRidResp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DeleteNotInitedRidResp) ProtoMessage() {}
func (x *DeleteNotInitedRidResp) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[22]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DeleteNotInitedRidResp.ProtoReflect.Descriptor instead.
func (*DeleteNotInitedRidResp) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{22}
}
// 充值-发货
type RechargeDeliveReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Cuid string `protobuf:"bytes,2,opt,name=cuid,proto3" json:"cuid,omitempty"`
Rid int32 `protobuf:"varint,3,opt,name=rid,proto3" json:"rid,omitempty"`
ServerId int32 `protobuf:"varint,4,opt,name=server_id,json=serverId,proto3" json:"server_id,omitempty"`
Id int32 `protobuf:"varint,5,opt,name=id,proto3" json:"id,omitempty"` // 商品 id
Platform string `protobuf:"bytes,6,opt,name=platform,proto3" json:"platform,omitempty"` //用于区分ai礼包
}
func (x *RechargeDeliveReq) Reset() {
*x = RechargeDeliveReq{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[23]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *RechargeDeliveReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*RechargeDeliveReq) ProtoMessage() {}
func (x *RechargeDeliveReq) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[23]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use RechargeDeliveReq.ProtoReflect.Descriptor instead.
func (*RechargeDeliveReq) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{23}
}
func (x *RechargeDeliveReq) GetCuid() string {
if x != nil {
return x.Cuid
}
return ""
}
func (x *RechargeDeliveReq) GetRid() int32 {
if x != nil {
return x.Rid
}
return 0
}
func (x *RechargeDeliveReq) GetServerId() int32 {
if x != nil {
return x.ServerId
}
return 0
}
func (x *RechargeDeliveReq) GetId() int32 {
if x != nil {
return x.Id
}
return 0
}
func (x *RechargeDeliveReq) GetPlatform() string {
if x != nil {
return x.Platform
}
return ""
}
type RechargeDeliveResp struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *RechargeDeliveResp) Reset() {
*x = RechargeDeliveResp{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[24]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *RechargeDeliveResp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*RechargeDeliveResp) ProtoMessage() {}
func (x *RechargeDeliveResp) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[24]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use RechargeDeliveResp.ProtoReflect.Descriptor instead.
func (*RechargeDeliveResp) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{24}
}
// 充值-礼包
type RechargeGiftReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
G123Id string `protobuf:"bytes,1,opt,name=g123_id,json=g123Id,proto3" json:"g123_id,omitempty"`
VipPoints int32 `protobuf:"varint,2,opt,name=vipPoints,proto3" json:"vipPoints,omitempty"`
AmountToDiamond int32 `protobuf:"varint,3,opt,name=amountToDiamond,proto3" json:"amountToDiamond,omitempty"`
Price int32 `protobuf:"varint,4,opt,name=price,proto3" json:"price,omitempty"`
Duration int32 `protobuf:"varint,5,opt,name=duration,proto3" json:"duration,omitempty"`
PurchaseLimitAmount int32 `protobuf:"varint,6,opt,name=purchaseLimitAmount,proto3" json:"purchaseLimitAmount,omitempty"`
IsAISupported bool `protobuf:"varint,7,opt,name=isAISupported,proto3" json:"isAISupported,omitempty"`
Items string `protobuf:"bytes,8,opt,name=items,proto3" json:"items,omitempty"`
BackGround string `protobuf:"bytes,9,opt,name=backGround,proto3" json:"backGround,omitempty"`
Rid int32 `protobuf:"varint,10,opt,name=rid,proto3" json:"rid,omitempty"`
TemplateId int32 `protobuf:"varint,11,opt,name=template_id,json=templateId,proto3" json:"template_id,omitempty"`
EndTs int64 `protobuf:"varint,12,opt,name=end_ts,json=endTs,proto3" json:"end_ts,omitempty"`
Status int32 `protobuf:"varint,13,opt,name=status,proto3" json:"status,omitempty"`
Id int64 `protobuf:"varint,14,opt,name=id,proto3" json:"id,omitempty"`
PriceValueRatio int32 `protobuf:"varint,15,opt,name=priceValueRatio,proto3" json:"priceValueRatio,omitempty"`
}
func (x *RechargeGiftReq) Reset() {
*x = RechargeGiftReq{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[25]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *RechargeGiftReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*RechargeGiftReq) ProtoMessage() {}
func (x *RechargeGiftReq) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[25]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use RechargeGiftReq.ProtoReflect.Descriptor instead.
func (*RechargeGiftReq) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{25}
}
func (x *RechargeGiftReq) GetG123Id() string {
if x != nil {
return x.G123Id
}
return ""
}
func (x *RechargeGiftReq) GetVipPoints() int32 {
if x != nil {
return x.VipPoints
}
return 0
}
func (x *RechargeGiftReq) GetAmountToDiamond() int32 {
if x != nil {
return x.AmountToDiamond
}
return 0
}
func (x *RechargeGiftReq) GetPrice() int32 {
if x != nil {
return x.Price
}
return 0
}
func (x *RechargeGiftReq) GetDuration() int32 {
if x != nil {
return x.Duration
}
return 0
}
func (x *RechargeGiftReq) GetPurchaseLimitAmount() int32 {
if x != nil {
return x.PurchaseLimitAmount
}
return 0
}
func (x *RechargeGiftReq) GetIsAISupported() bool {
if x != nil {
return x.IsAISupported
}
return false
}
func (x *RechargeGiftReq) GetItems() string {
if x != nil {
return x.Items
}
return ""
}
func (x *RechargeGiftReq) GetBackGround() string {
if x != nil {
return x.BackGround
}
return ""
}
func (x *RechargeGiftReq) GetRid() int32 {
if x != nil {
return x.Rid
}
return 0
}
func (x *RechargeGiftReq) GetTemplateId() int32 {
if x != nil {
return x.TemplateId
}
return 0
}
func (x *RechargeGiftReq) GetEndTs() int64 {
if x != nil {
return x.EndTs
}
return 0
}
func (x *RechargeGiftReq) GetStatus() int32 {
if x != nil {
return x.Status
}
return 0
}
func (x *RechargeGiftReq) GetId() int64 {
if x != nil {
return x.Id
}
return 0
}
func (x *RechargeGiftReq) GetPriceValueRatio() int32 {
if x != nil {
return x.PriceValueRatio
}
return 0
}
type RechargeGiftResp struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *RechargeGiftResp) Reset() {
*x = RechargeGiftResp{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[26]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *RechargeGiftResp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*RechargeGiftResp) ProtoMessage() {}
func (x *RechargeGiftResp) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[26]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use RechargeGiftResp.ProtoReflect.Descriptor instead.
func (*RechargeGiftResp) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{26}
}
type RechargeAlertGiftReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
GiftId int32 `protobuf:"varint,1,opt,name=giftId,proto3" json:"giftId,omitempty"`
Rid int32 `protobuf:"varint,2,opt,name=rid,proto3" json:"rid,omitempty"`
}
func (x *RechargeAlertGiftReq) Reset() {
*x = RechargeAlertGiftReq{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[27]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *RechargeAlertGiftReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*RechargeAlertGiftReq) ProtoMessage() {}
func (x *RechargeAlertGiftReq) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[27]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use RechargeAlertGiftReq.ProtoReflect.Descriptor instead.
func (*RechargeAlertGiftReq) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{27}
}
func (x *RechargeAlertGiftReq) GetGiftId() int32 {
if x != nil {
return x.GiftId
}
return 0
}
func (x *RechargeAlertGiftReq) GetRid() int32 {
if x != nil {
return x.Rid
}
return 0
}
type RechargeAlertGiftResp struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *RechargeAlertGiftResp) Reset() {
*x = RechargeAlertGiftResp{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[28]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *RechargeAlertGiftResp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*RechargeAlertGiftResp) ProtoMessage() {}
func (x *RechargeAlertGiftResp) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[28]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use RechargeAlertGiftResp.ProtoReflect.Descriptor instead.
func (*RechargeAlertGiftResp) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{28}
}
// Gvg玩家舰队信息
type GvgFleetReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Rid int32 `protobuf:"varint,1,opt,name=rid,proto3" json:"rid,omitempty"`
Pos int32 `protobuf:"varint,2,opt,name=pos,proto3" json:"pos,omitempty"`
}
func (x *GvgFleetReq) Reset() {
*x = GvgFleetReq{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[29]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GvgFleetReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GvgFleetReq) ProtoMessage() {}
func (x *GvgFleetReq) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[29]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GvgFleetReq.ProtoReflect.Descriptor instead.
func (*GvgFleetReq) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{29}
}
func (x *GvgFleetReq) GetRid() int32 {
if x != nil {
return x.Rid
}
return 0
}
func (x *GvgFleetReq) GetPos() int32 {
if x != nil {
return x.Pos
}
return 0
}
//伙伴基本信息
type HERO_ITEM struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Hid int32 `protobuf:"varint,1,opt,name=hid,proto3" json:"hid,omitempty"`
Hp int64 `protobuf:"varint,2,opt,name=hp,proto3" json:"hp,omitempty"`
}
func (x *HERO_ITEM) Reset() {
*x = HERO_ITEM{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[30]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *HERO_ITEM) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*HERO_ITEM) ProtoMessage() {}
func (x *HERO_ITEM) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[30]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use HERO_ITEM.ProtoReflect.Descriptor instead.
func (*HERO_ITEM) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{30}
}
func (x *HERO_ITEM) GetHid() int32 {
if x != nil {
return x.Hid
}
return 0
}
func (x *HERO_ITEM) GetHp() int64 {
if x != nil {
return x.Hp
}
return 0
}
//舰队基本信息
type WARSHIP_ITEM struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Wid int32 `protobuf:"varint,1,opt,name=wid,proto3" json:"wid,omitempty"` //战舰id
Atk int64 `protobuf:"varint,2,opt,name=atk,proto3" json:"atk,omitempty"`
Def int64 `protobuf:"varint,3,opt,name=def,proto3" json:"def,omitempty"`
Heros []*HERO_ITEM `protobuf:"bytes,4,rep,name=heros,proto3" json:"heros,omitempty"` //英雄
}
func (x *WARSHIP_ITEM) Reset() {
*x = WARSHIP_ITEM{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[31]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *WARSHIP_ITEM) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*WARSHIP_ITEM) ProtoMessage() {}
func (x *WARSHIP_ITEM) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[31]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use WARSHIP_ITEM.ProtoReflect.Descriptor instead.
func (*WARSHIP_ITEM) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{31}
}
func (x *WARSHIP_ITEM) GetWid() int32 {
if x != nil {
return x.Wid
}
return 0
}
func (x *WARSHIP_ITEM) GetAtk() int64 {
if x != nil {
return x.Atk
}
return 0
}
func (x *WARSHIP_ITEM) GetDef() int64 {
if x != nil {
return x.Def
}
return 0
}
func (x *WARSHIP_ITEM) GetHeros() []*HERO_ITEM {
if x != nil {
return x.Heros
}
return nil
}
type GvgFleetResp struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Fleets []*WARSHIP_ITEM `protobuf:"bytes,1,rep,name=fleets,proto3" json:"fleets,omitempty"`
}
func (x *GvgFleetResp) Reset() {
*x = GvgFleetResp{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[32]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GvgFleetResp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GvgFleetResp) ProtoMessage() {}
func (x *GvgFleetResp) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[32]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GvgFleetResp.ProtoReflect.Descriptor instead.
func (*GvgFleetResp) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{32}
}
func (x *GvgFleetResp) GetFleets() []*WARSHIP_ITEM {
if x != nil {
return x.Fleets
}
return nil
}
type GvgReportReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Rid int32 `protobuf:"varint,1,opt,name=rid,proto3" json:"rid,omitempty"`
Cid string `protobuf:"bytes,2,opt,name=cid,proto3" json:"cid,omitempty"`
V string `protobuf:"bytes,3,opt,name=v,proto3" json:"v,omitempty"`
}
func (x *GvgReportReq) Reset() {
*x = GvgReportReq{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[33]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GvgReportReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GvgReportReq) ProtoMessage() {}
func (x *GvgReportReq) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[33]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GvgReportReq.ProtoReflect.Descriptor instead.
func (*GvgReportReq) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{33}
}
func (x *GvgReportReq) GetRid() int32 {
if x != nil {
return x.Rid
}
return 0
}
func (x *GvgReportReq) GetCid() string {
if x != nil {
return x.Cid
}
return ""
}
func (x *GvgReportReq) GetV() string {
if x != nil {
return x.V
}
return ""
}
type GvgReportResp struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *GvgReportResp) Reset() {
*x = GvgReportResp{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[34]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GvgReportResp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GvgReportResp) ProtoMessage() {}
func (x *GvgReportResp) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[34]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GvgReportResp.ProtoReflect.Descriptor instead.
func (*GvgReportResp) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{34}
}
type GvgIsReadyReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *GvgIsReadyReq) Reset() {
*x = GvgIsReadyReq{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[35]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GvgIsReadyReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GvgIsReadyReq) ProtoMessage() {}
func (x *GvgIsReadyReq) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[35]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GvgIsReadyReq.ProtoReflect.Descriptor instead.
func (*GvgIsReadyReq) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{35}
}
type GvgIsReadyResp struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Ready bool `protobuf:"varint,1,opt,name=ready,proto3" json:"ready,omitempty"`
}
func (x *GvgIsReadyResp) Reset() {
*x = GvgIsReadyResp{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[36]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GvgIsReadyResp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GvgIsReadyResp) ProtoMessage() {}
func (x *GvgIsReadyResp) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[36]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GvgIsReadyResp.ProtoReflect.Descriptor instead.
func (*GvgIsReadyResp) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{36}
}
func (x *GvgIsReadyResp) GetReady() bool {
if x != nil {
return x.Ready
}
return false
}
type MarqueeActiveReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *MarqueeActiveReq) Reset() {
*x = MarqueeActiveReq{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[37]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *MarqueeActiveReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*MarqueeActiveReq) ProtoMessage() {}
func (x *MarqueeActiveReq) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[37]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use MarqueeActiveReq.ProtoReflect.Descriptor instead.
func (*MarqueeActiveReq) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{37}
}
type MarqueeActiveResp struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *MarqueeActiveResp) Reset() {
*x = MarqueeActiveResp{}
if protoimpl.UnsafeEnabled {
mi := &file_game_server_rpc_proto_msgTypes[38]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *MarqueeActiveResp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*MarqueeActiveResp) ProtoMessage() {}
func (x *MarqueeActiveResp) ProtoReflect() protoreflect.Message {
mi := &file_game_server_rpc_proto_msgTypes[38]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use MarqueeActiveResp.ProtoReflect.Descriptor instead.
func (*MarqueeActiveResp) Descriptor() ([]byte, []int) {
return file_game_server_rpc_proto_rawDescGZIP(), []int{38}
}
var File_game_server_rpc_proto protoreflect.FileDescriptor
var file_game_server_rpc_proto_rawDesc = []byte{
0x0a, 0x15, 0x67, 0x61, 0x6d, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x72, 0x70,
0x63, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x67, 0x73, 0x72, 0x70, 0x63, 0x22, 0x24,
0x0a, 0x06, 0x6b, 0x33, 0x32, 0x76, 0x36, 0x34, 0x12, 0x0c, 0x0a, 0x01, 0x6b, 0x18, 0x01, 0x20,
0x01, 0x28, 0x05, 0x52, 0x01, 0x6b, 0x12, 0x0c, 0x0a, 0x01, 0x76, 0x18, 0x02, 0x20, 0x01, 0x28,
0x03, 0x52, 0x01, 0x76, 0x22, 0x39, 0x0a, 0x0b, 0x47, 0x6d, 0x53, 0x65, 0x6e, 0x64, 0x47, 0x4d,
0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x67, 0x6d, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
0x05, 0x52, 0x04, 0x67, 0x6d, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d,
0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x22,
0x0e, 0x0a, 0x0c, 0x47, 0x6d, 0x53, 0x65, 0x6e, 0x64, 0x47, 0x4d, 0x52, 0x65, 0x73, 0x70, 0x22,
0x24, 0x0a, 0x10, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x44, 0x61, 0x74,
0x61, 0x49, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x72, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
0x52, 0x03, 0x72, 0x69, 0x64, 0x22, 0x55, 0x0a, 0x11, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52,
0x6f, 0x6c, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4f, 0x75, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f,
0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x18,
0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61,
0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x4a, 0x0a, 0x10,
0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x44, 0x61, 0x74, 0x61, 0x49, 0x6e,
0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x75,
0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x72, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
0x03, 0x72, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01,
0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x41, 0x0a, 0x11, 0x49, 0x6d, 0x70, 0x6f,
0x72, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4f, 0x75, 0x74, 0x12, 0x12, 0x0a,
0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64,
0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01,
0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x81, 0x01, 0x0a, 0x0b,
0x4d, 0x61, 0x69, 0x6c, 0x4c, 0x61, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x6c,
0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c,
0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65,
0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12,
0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x62, 0x61, 0x63,
0x6b, 0x67, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x55, 0x72, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
0x52, 0x0d, 0x62, 0x61, 0x63, 0x6b, 0x67, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x55, 0x72, 0x6c, 0x22,
0xc0, 0x01, 0x0a, 0x16, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x41, 0x72, 0x67, 0x73, 0x53, 0x65,
0x6e, 0x64, 0x52, 0x6f, 0x6c, 0x65, 0x4d, 0x61, 0x69, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x69,
0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x05, 0x52, 0x04, 0x72, 0x69, 0x64, 0x73, 0x12, 0x23,
0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e,
0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x6b, 0x33, 0x32, 0x76, 0x36, 0x34, 0x52, 0x05, 0x69, 0x74,
0x65, 0x6d, 0x73, 0x12, 0x2d, 0x0a, 0x08, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x6c, 0x61, 0x6e, 0x18,
0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x4d, 0x61,
0x69, 0x6c, 0x4c, 0x61, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x6d, 0x61, 0x69, 0x6c, 0x4c,
0x61, 0x6e, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65,
0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74, 0x54, 0x79, 0x70,
0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65,
0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x54, 0x79,
0x70, 0x65, 0x22, 0x47, 0x0a, 0x17, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x52, 0x65, 0x70, 0x6c,
0x79, 0x53, 0x65, 0x6e, 0x64, 0x52, 0x6f, 0x6c, 0x65, 0x4d, 0x61, 0x69, 0x6c, 0x12, 0x12, 0x0a,
0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64,
0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01,
0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0xf6, 0x02, 0x0a, 0x16,
0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x41, 0x72, 0x67, 0x73, 0x53, 0x65, 0x6e, 0x64, 0x53, 0x65,
0x72, 0x76, 0x4d, 0x61, 0x69, 0x6c, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x65, 0x72, 0x76, 0x5f, 0x69,
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x65, 0x72, 0x76, 0x49, 0x64, 0x12,
0x23, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d,
0x2e, 0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x6b, 0x33, 0x32, 0x76, 0x36, 0x34, 0x52, 0x05, 0x69,
0x74, 0x65, 0x6d, 0x73, 0x12, 0x2d, 0x0a, 0x08, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x6c, 0x61, 0x6e,
0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x4d,
0x61, 0x69, 0x6c, 0x4c, 0x61, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x6d, 0x61, 0x69, 0x6c,
0x4c, 0x61, 0x6e, 0x12, 0x1e, 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64, 0x5f, 0x6c, 0x76, 0x5f, 0x6d,
0x69, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x4c, 0x76,
0x4d, 0x69, 0x6e, 0x12, 0x1e, 0x0a, 0x0b, 0x6e, 0x65, 0x65, 0x64, 0x5f, 0x6c, 0x76, 0x5f, 0x6d,
0x61, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x4c, 0x76,
0x4d, 0x61, 0x78, 0x12, 0x2b, 0x0a, 0x11, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x65,
0x64, 0x5f, 0x62, 0x65, 0x66, 0x6f, 0x72, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x10,
0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x65, 0x64, 0x42, 0x65, 0x66, 0x6f, 0x72, 0x65,
0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x65, 0x64, 0x5f, 0x61,
0x66, 0x74, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x72, 0x65, 0x67, 0x69,
0x73, 0x74, 0x65, 0x72, 0x65, 0x64, 0x41, 0x66, 0x74, 0x65, 0x72, 0x12, 0x17, 0x0a, 0x07, 0x6d,
0x61, 0x69, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6d, 0x61,
0x69, 0x6c, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x74, 0x79,
0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74, 0x54,
0x79, 0x70, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x5f, 0x74, 0x79,
0x70, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64,
0x54, 0x79, 0x70, 0x65, 0x22, 0x47, 0x0a, 0x17, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x52, 0x65,
0x70, 0x6c, 0x79, 0x53, 0x65, 0x6e, 0x64, 0x53, 0x65, 0x72, 0x76, 0x4d, 0x61, 0x69, 0x6c, 0x12,
0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63,
0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02,
0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x25, 0x0a,
0x11, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x41, 0x72, 0x67, 0x73, 0x4f, 0x66, 0x66, 0x6c, 0x69,
0x6e, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x72, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
0x03, 0x72, 0x69, 0x64, 0x22, 0x14, 0x0a, 0x12, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x52, 0x65,
0x70, 0x6c, 0x79, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x22, 0x83, 0x02, 0x0a, 0x16, 0x53,
0x65, 0x72, 0x76, 0x65, 0x72, 0x41, 0x72, 0x67, 0x73, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67,
0x65, 0x50, 0x75, 0x73, 0x68, 0x12, 0x19, 0x0a, 0x08, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x69,
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x64,
0x12, 0x21, 0x0a, 0x0c, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65,
0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x54,
0x79, 0x70, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x70, 0x61, 0x79, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18,
0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x61, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x24,
0x0a, 0x0e, 0x73, 0x64, 0x6b, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x69, 0x64,
0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x64, 0x6b, 0x50, 0x72, 0x6f, 0x64, 0x75,
0x63, 0x74, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
0x74, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x72, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05,
0x52, 0x03, 0x72, 0x69, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x5f, 0x61,
0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x63, 0x68, 0x65,
0x63, 0x6b, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x6d, 0x6f, 0x75,
0x6e, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74,
0x22, 0x47, 0x0a, 0x17, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x52,
0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x50, 0x75, 0x73, 0x68, 0x12, 0x12, 0x0a, 0x04, 0x63,
0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12,
0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x40, 0x0a, 0x12, 0x53, 0x65, 0x72,
0x76, 0x65, 0x72, 0x41, 0x72, 0x67, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x4a, 0x75, 0x6d, 0x70, 0x12,
0x12, 0x0a, 0x04, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74,
0x69, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x18, 0x02, 0x20,
0x01, 0x28, 0x08, 0x52, 0x06, 0x63, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x22, 0x43, 0x0a, 0x13, 0x53,
0x65, 0x72, 0x76, 0x65, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x4a, 0x75,
0x6d, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
0x22, 0x31, 0x0a, 0x09, 0x4e, 0x6f, 0x74, 0x49, 0x6e, 0x69, 0x74, 0x65, 0x64, 0x12, 0x12, 0x0a,
0x04, 0x63, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x75, 0x69,
0x64, 0x12, 0x10, 0x0a, 0x03, 0x72, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03,
0x72, 0x69, 0x64, 0x22, 0x15, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x4e, 0x6f, 0x74, 0x49, 0x6e, 0x69,
0x74, 0x65, 0x64, 0x52, 0x69, 0x64, 0x73, 0x52, 0x65, 0x71, 0x22, 0x3a, 0x0a, 0x14, 0x47, 0x65,
0x74, 0x4e, 0x6f, 0x74, 0x49, 0x6e, 0x69, 0x74, 0x65, 0x64, 0x52, 0x69, 0x64, 0x73, 0x52, 0x65,
0x73, 0x70, 0x12, 0x22, 0x0a, 0x03, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
0x10, 0x2e, 0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x4e, 0x6f, 0x74, 0x49, 0x6e, 0x69, 0x74, 0x65,
0x64, 0x52, 0x03, 0x69, 0x64, 0x73, 0x22, 0x29, 0x0a, 0x15, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
0x4e, 0x6f, 0x74, 0x49, 0x6e, 0x69, 0x74, 0x65, 0x64, 0x52, 0x69, 0x64, 0x52, 0x65, 0x71, 0x12,
0x10, 0x0a, 0x03, 0x72, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x72, 0x69,
0x64, 0x22, 0x18, 0x0a, 0x16, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4e, 0x6f, 0x74, 0x49, 0x6e,
0x69, 0x74, 0x65, 0x64, 0x52, 0x69, 0x64, 0x52, 0x65, 0x73, 0x70, 0x22, 0x82, 0x01, 0x0a, 0x11,
0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x44, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x52, 0x65,
0x71, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x75, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
0x04, 0x63, 0x75, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x72, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01,
0x28, 0x05, 0x52, 0x03, 0x72, 0x69, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x65, 0x72, 0x76, 0x65,
0x72, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x73, 0x65, 0x72, 0x76,
0x65, 0x72, 0x49, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05,
0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d,
0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d,
0x22, 0x14, 0x0a, 0x12, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x44, 0x65, 0x6c, 0x69,
0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x22, 0xce, 0x03, 0x0a, 0x0f, 0x52, 0x65, 0x63, 0x68, 0x61,
0x72, 0x67, 0x65, 0x47, 0x69, 0x66, 0x74, 0x52, 0x65, 0x71, 0x12, 0x17, 0x0a, 0x07, 0x67, 0x31,
0x32, 0x33, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x67, 0x31, 0x32,
0x33, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x76, 0x69, 0x70, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x73,
0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x76, 0x69, 0x70, 0x50, 0x6f, 0x69, 0x6e, 0x74,
0x73, 0x12, 0x28, 0x0a, 0x0f, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x6f, 0x44, 0x69, 0x61,
0x6d, 0x6f, 0x6e, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, 0x61, 0x6d, 0x6f, 0x75,
0x6e, 0x74, 0x54, 0x6f, 0x44, 0x69, 0x61, 0x6d, 0x6f, 0x6e, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70,
0x72, 0x69, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x70, 0x72, 0x69, 0x63,
0x65, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20,
0x01, 0x28, 0x05, 0x52, 0x08, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x30, 0x0a,
0x13, 0x70, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x41, 0x6d,
0x6f, 0x75, 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x13, 0x70, 0x75, 0x72, 0x63,
0x68, 0x61, 0x73, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12,
0x24, 0x0a, 0x0d, 0x69, 0x73, 0x41, 0x49, 0x53, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64,
0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x69, 0x73, 0x41, 0x49, 0x53, 0x75, 0x70, 0x70,
0x6f, 0x72, 0x74, 0x65, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x08,
0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x62,
0x61, 0x63, 0x6b, 0x47, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52,
0x0a, 0x62, 0x61, 0x63, 0x6b, 0x47, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x72,
0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x72, 0x69, 0x64, 0x12, 0x1f, 0x0a,
0x0b, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x0b, 0x20, 0x01,
0x28, 0x05, 0x52, 0x0a, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x12, 0x15,
0x0a, 0x06, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05,
0x65, 0x6e, 0x64, 0x54, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
0x0d, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0e, 0x0a,
0x02, 0x69, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x28, 0x0a,
0x0f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f,
0x18, 0x0f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x56, 0x61, 0x6c,
0x75, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x22, 0x12, 0x0a, 0x10, 0x52, 0x65, 0x63, 0x68, 0x61,
0x72, 0x67, 0x65, 0x47, 0x69, 0x66, 0x74, 0x52, 0x65, 0x73, 0x70, 0x22, 0x40, 0x0a, 0x14, 0x52,
0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x41, 0x6c, 0x65, 0x72, 0x74, 0x47, 0x69, 0x66, 0x74,
0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x67, 0x69, 0x66, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20,
0x01, 0x28, 0x05, 0x52, 0x06, 0x67, 0x69, 0x66, 0x74, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x72,
0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x72, 0x69, 0x64, 0x22, 0x17, 0x0a,
0x15, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x41, 0x6c, 0x65, 0x72, 0x74, 0x47, 0x69,
0x66, 0x74, 0x52, 0x65, 0x73, 0x70, 0x22, 0x31, 0x0a, 0x0b, 0x47, 0x76, 0x67, 0x46, 0x6c, 0x65,
0x65, 0x74, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x72, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
0x28, 0x05, 0x52, 0x03, 0x72, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x6f, 0x73, 0x18, 0x02,
0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x70, 0x6f, 0x73, 0x22, 0x2d, 0x0a, 0x09, 0x48, 0x45, 0x52,
0x4f, 0x5f, 0x49, 0x54, 0x45, 0x4d, 0x12, 0x10, 0x0a, 0x03, 0x68, 0x69, 0x64, 0x18, 0x01, 0x20,
0x01, 0x28, 0x05, 0x52, 0x03, 0x68, 0x69, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x68, 0x70, 0x18, 0x02,
0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x68, 0x70, 0x22, 0x6c, 0x0a, 0x0c, 0x57, 0x41, 0x52, 0x53,
0x48, 0x49, 0x50, 0x5f, 0x49, 0x54, 0x45, 0x4d, 0x12, 0x10, 0x0a, 0x03, 0x77, 0x69, 0x64, 0x18,
0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x77, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x74,
0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x74, 0x6b, 0x12, 0x10, 0x0a, 0x03,
0x64, 0x65, 0x66, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x64, 0x65, 0x66, 0x12, 0x26,
0x0a, 0x05, 0x68, 0x65, 0x72, 0x6f, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e,
0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x48, 0x45, 0x52, 0x4f, 0x5f, 0x49, 0x54, 0x45, 0x4d, 0x52,
0x05, 0x68, 0x65, 0x72, 0x6f, 0x73, 0x22, 0x3b, 0x0a, 0x0c, 0x47, 0x76, 0x67, 0x46, 0x6c, 0x65,
0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2b, 0x0a, 0x06, 0x66, 0x6c, 0x65, 0x65, 0x74, 0x73,
0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x57,
0x41, 0x52, 0x53, 0x48, 0x49, 0x50, 0x5f, 0x49, 0x54, 0x45, 0x4d, 0x52, 0x06, 0x66, 0x6c, 0x65,
0x65, 0x74, 0x73, 0x22, 0x40, 0x0a, 0x0c, 0x47, 0x76, 0x67, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74,
0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x72, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
0x52, 0x03, 0x72, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01,
0x28, 0x09, 0x52, 0x03, 0x63, 0x69, 0x64, 0x12, 0x0c, 0x0a, 0x01, 0x76, 0x18, 0x03, 0x20, 0x01,
0x28, 0x09, 0x52, 0x01, 0x76, 0x22, 0x0f, 0x0a, 0x0d, 0x47, 0x76, 0x67, 0x52, 0x65, 0x70, 0x6f,
0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x22, 0x0f, 0x0a, 0x0d, 0x47, 0x76, 0x67, 0x49, 0x73, 0x52,
0x65, 0x61, 0x64, 0x79, 0x52, 0x65, 0x71, 0x22, 0x26, 0x0a, 0x0e, 0x47, 0x76, 0x67, 0x49, 0x73,
0x52, 0x65, 0x61, 0x64, 0x79, 0x52, 0x65, 0x73, 0x70, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x65, 0x61,
0x64, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x72, 0x65, 0x61, 0x64, 0x79, 0x22,
0x12, 0x0a, 0x10, 0x4d, 0x61, 0x72, 0x71, 0x75, 0x65, 0x65, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65,
0x52, 0x65, 0x71, 0x22, 0x13, 0x0a, 0x11, 0x4d, 0x61, 0x72, 0x71, 0x75, 0x65, 0x65, 0x41, 0x63,
0x74, 0x69, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x32, 0x44, 0x0a, 0x0f, 0x47, 0x6d, 0x47, 0x61,
0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x52, 0x70, 0x63, 0x12, 0x31, 0x0a, 0x06, 0x73,
0x65, 0x6e, 0x64, 0x47, 0x4d, 0x12, 0x12, 0x2e, 0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x47, 0x6d,
0x53, 0x65, 0x6e, 0x64, 0x47, 0x4d, 0x52, 0x65, 0x71, 0x1a, 0x13, 0x2e, 0x67, 0x73, 0x72, 0x70,
0x63, 0x2e, 0x47, 0x6d, 0x53, 0x65, 0x6e, 0x64, 0x47, 0x4d, 0x52, 0x65, 0x73, 0x70, 0x32, 0xd9,
0x04, 0x0a, 0x0e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65,
0x32, 0x12, 0x4d, 0x0a, 0x0c, 0x73, 0x65, 0x6e, 0x64, 0x52, 0x6f, 0x6c, 0x65, 0x4d, 0x61, 0x69,
0x6c, 0x12, 0x1d, 0x2e, 0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72,
0x41, 0x72, 0x67, 0x73, 0x53, 0x65, 0x6e, 0x64, 0x52, 0x6f, 0x6c, 0x65, 0x4d, 0x61, 0x69, 0x6c,
0x1a, 0x1e, 0x2e, 0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x52,
0x65, 0x70, 0x6c, 0x79, 0x53, 0x65, 0x6e, 0x64, 0x52, 0x6f, 0x6c, 0x65, 0x4d, 0x61, 0x69, 0x6c,
0x12, 0x43, 0x0a, 0x0e, 0x65, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x44, 0x61,
0x74, 0x61, 0x12, 0x17, 0x2e, 0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72,
0x74, 0x52, 0x6f, 0x6c, 0x65, 0x44, 0x61, 0x74, 0x61, 0x49, 0x6e, 0x1a, 0x18, 0x2e, 0x67, 0x73,
0x72, 0x70, 0x63, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x44, 0x61,
0x74, 0x61, 0x4f, 0x75, 0x74, 0x12, 0x43, 0x0a, 0x0e, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52,
0x6f, 0x6c, 0x65, 0x44, 0x61, 0x74, 0x61, 0x12, 0x17, 0x2e, 0x67, 0x73, 0x72, 0x70, 0x63, 0x2e,
0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x44, 0x61, 0x74, 0x61, 0x49, 0x6e,
0x1a, 0x18, 0x2e, 0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52,
0x6f, 0x6c, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4f, 0x75, 0x74, 0x12, 0x4d, 0x0a, 0x0c, 0x73, 0x65,
0x6e, 0x64, 0x53, 0x65, 0x72, 0x76, 0x4d, 0x61, 0x69, 0x6c, 0x12, 0x1d, 0x2e, 0x67, 0x73, 0x72,
0x70, 0x63, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x41, 0x72, 0x67, 0x73, 0x53, 0x65, 0x6e,
0x64, 0x53, 0x65, 0x72, 0x76, 0x4d, 0x61, 0x69, 0x6c, 0x1a, 0x1e, 0x2e, 0x67, 0x73, 0x72, 0x70,
0x63, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x65, 0x6e,
0x64, 0x53, 0x65, 0x72, 0x76, 0x4d, 0x61, 0x69, 0x6c, 0x12, 0x3e, 0x0a, 0x07, 0x6f, 0x66, 0x66,
0x6c, 0x69, 0x6e, 0x65, 0x12, 0x18, 0x2e, 0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x53, 0x65, 0x72,
0x76, 0x65, 0x72, 0x41, 0x72, 0x67, 0x73, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x1a, 0x19,
0x2e, 0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x52, 0x65, 0x70,
0x6c, 0x79, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x12, 0x41, 0x0a, 0x08, 0x74, 0x69, 0x6d,
0x65, 0x4a, 0x75, 0x6d, 0x70, 0x12, 0x19, 0x2e, 0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x53, 0x65,
0x72, 0x76, 0x65, 0x72, 0x41, 0x72, 0x67, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x4a, 0x75, 0x6d, 0x70,
0x1a, 0x1a, 0x2e, 0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x52,
0x65, 0x70, 0x6c, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x4a, 0x75, 0x6d, 0x70, 0x12, 0x4b, 0x0a, 0x10,
0x67, 0x65, 0x74, 0x4e, 0x6f, 0x74, 0x49, 0x6e, 0x69, 0x74, 0x65, 0x64, 0x52, 0x69, 0x64, 0x73,
0x12, 0x1a, 0x2e, 0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x47, 0x65, 0x74, 0x4e, 0x6f, 0x74, 0x49,
0x6e, 0x69, 0x74, 0x65, 0x64, 0x52, 0x69, 0x64, 0x73, 0x52, 0x65, 0x71, 0x1a, 0x1b, 0x2e, 0x67,
0x73, 0x72, 0x70, 0x63, 0x2e, 0x47, 0x65, 0x74, 0x4e, 0x6f, 0x74, 0x49, 0x6e, 0x69, 0x74, 0x65,
0x64, 0x52, 0x69, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x12, 0x4f, 0x0a, 0x10, 0x64, 0x65, 0x6c,
0x65, 0x74, 0x65, 0x4e, 0x6f, 0x74, 0x49, 0x6e, 0x69, 0x74, 0x52, 0x69, 0x64, 0x12, 0x1c, 0x2e,
0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4e, 0x6f, 0x74, 0x49,
0x6e, 0x69, 0x74, 0x65, 0x64, 0x52, 0x69, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x1d, 0x2e, 0x67, 0x73,
0x72, 0x70, 0x63, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4e, 0x6f, 0x74, 0x49, 0x6e, 0x69,
0x74, 0x65, 0x64, 0x52, 0x69, 0x64, 0x52, 0x65, 0x73, 0x70, 0x32, 0xdd, 0x01, 0x0a, 0x15, 0x52,
0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x47, 0x61, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65,
0x72, 0x52, 0x70, 0x63, 0x12, 0x3d, 0x0a, 0x06, 0x64, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x12, 0x18,
0x2e, 0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x44,
0x65, 0x6c, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x19, 0x2e, 0x67, 0x73, 0x72, 0x70, 0x63,
0x2e, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x44, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x52,
0x65, 0x73, 0x70, 0x12, 0x3a, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x47, 0x69, 0x66, 0x74, 0x12, 0x16,
0x2e, 0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x47,
0x69, 0x66, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x17, 0x2e, 0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x52,
0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x47, 0x69, 0x66, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12,
0x49, 0x0a, 0x0c, 0x61, 0x64, 0x64, 0x41, 0x6c, 0x65, 0x72, 0x74, 0x47, 0x69, 0x66, 0x74, 0x12,
0x1b, 0x2e, 0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65,
0x41, 0x6c, 0x65, 0x72, 0x74, 0x47, 0x69, 0x66, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x1c, 0x2e, 0x67,
0x73, 0x72, 0x70, 0x63, 0x2e, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x41, 0x6c, 0x65,
0x72, 0x74, 0x47, 0x69, 0x66, 0x74, 0x52, 0x65, 0x73, 0x70, 0x32, 0xc3, 0x01, 0x0a, 0x10, 0x47,
0x76, 0x67, 0x47, 0x61, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x52, 0x70, 0x63, 0x12,
0x3b, 0x0a, 0x10, 0x67, 0x65, 0x74, 0x47, 0x76, 0x67, 0x46, 0x6c, 0x65, 0x65, 0x74, 0x42, 0x79,
0x52, 0x69, 0x64, 0x12, 0x12, 0x2e, 0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x47, 0x76, 0x67, 0x46,
0x6c, 0x65, 0x65, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x13, 0x2e, 0x67, 0x73, 0x72, 0x70, 0x63, 0x2e,
0x47, 0x76, 0x67, 0x46, 0x6c, 0x65, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x3a, 0x0a, 0x0d,
0x73, 0x65, 0x6e, 0x64, 0x47, 0x76, 0x67, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x13, 0x2e,
0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x47, 0x76, 0x67, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52,
0x65, 0x71, 0x1a, 0x14, 0x2e, 0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x47, 0x76, 0x67, 0x52, 0x65,
0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x36, 0x0a, 0x07, 0x69, 0x73, 0x52, 0x65,
0x61, 0x64, 0x79, 0x12, 0x14, 0x2e, 0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x47, 0x76, 0x67, 0x49,
0x73, 0x52, 0x65, 0x61, 0x64, 0x79, 0x52, 0x65, 0x71, 0x1a, 0x15, 0x2e, 0x67, 0x73, 0x72, 0x70,
0x63, 0x2e, 0x47, 0x76, 0x67, 0x49, 0x73, 0x52, 0x65, 0x61, 0x64, 0x79, 0x52, 0x65, 0x73, 0x70,
0x32, 0x5a, 0x0a, 0x14, 0x4d, 0x61, 0x72, 0x71, 0x75, 0x65, 0x65, 0x47, 0x61, 0x6d, 0x65, 0x53,
0x65, 0x72, 0x76, 0x65, 0x72, 0x52, 0x70, 0x63, 0x12, 0x42, 0x0a, 0x0d, 0x6d, 0x61, 0x72, 0x71,
0x75, 0x65, 0x65, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x12, 0x17, 0x2e, 0x67, 0x73, 0x72, 0x70,
0x63, 0x2e, 0x4d, 0x61, 0x72, 0x71, 0x75, 0x65, 0x65, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x52,
0x65, 0x71, 0x1a, 0x18, 0x2e, 0x67, 0x73, 0x72, 0x70, 0x63, 0x2e, 0x4d, 0x61, 0x72, 0x71, 0x75,
0x65, 0x65, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x42, 0x09, 0x5a, 0x07,
0x2e, 0x2f, 0x67, 0x73, 0x72, 0x70, 0x63, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
file_game_server_rpc_proto_rawDescOnce sync.Once
file_game_server_rpc_proto_rawDescData = file_game_server_rpc_proto_rawDesc
)
func file_game_server_rpc_proto_rawDescGZIP() []byte {
file_game_server_rpc_proto_rawDescOnce.Do(func() {
file_game_server_rpc_proto_rawDescData = protoimpl.X.CompressGZIP(file_game_server_rpc_proto_rawDescData)
})
return file_game_server_rpc_proto_rawDescData
}
var file_game_server_rpc_proto_msgTypes = make([]protoimpl.MessageInfo, 39)
var file_game_server_rpc_proto_goTypes = []interface{}{
(*K32V64)(nil), // 0: gsrpc.k32v64
(*GmSendGMReq)(nil), // 1: gsrpc.GmSendGMReq
(*GmSendGMResp)(nil), // 2: gsrpc.GmSendGMResp
(*ExportRoleDataIn)(nil), // 3: gsrpc.ExportRoleDataIn
(*ExportRoleDataOut)(nil), // 4: gsrpc.ExportRoleDataOut
(*ImportRoleDataIn)(nil), // 5: gsrpc.ImportRoleDataIn
(*ImportRoleDataOut)(nil), // 6: gsrpc.ImportRoleDataOut
(*MailLanInfo)(nil), // 7: gsrpc.MailLanInfo
(*ServerArgsSendRoleMail)(nil), // 8: gsrpc.ServerArgsSendRoleMail
(*ServerReplySendRoleMail)(nil), // 9: gsrpc.ServerReplySendRoleMail
(*ServerArgsSendServMail)(nil), // 10: gsrpc.ServerArgsSendServMail
(*ServerReplySendServMail)(nil), // 11: gsrpc.ServerReplySendServMail
(*ServerArgsOffline)(nil), // 12: gsrpc.ServerArgsOffline
(*ServerReplyOffline)(nil), // 13: gsrpc.ServerReplyOffline
(*ServerArgsRechargePush)(nil), // 14: gsrpc.ServerArgsRechargePush
(*ServerReplyRechargePush)(nil), // 15: gsrpc.ServerReplyRechargePush
(*ServerArgsTimeJump)(nil), // 16: gsrpc.ServerArgsTimeJump
(*ServerReplyTimeJump)(nil), // 17: gsrpc.ServerReplyTimeJump
(*NotInited)(nil), // 18: gsrpc.NotInited
(*GetNotInitedRidsReq)(nil), // 19: gsrpc.GetNotInitedRidsReq
(*GetNotInitedRidsResp)(nil), // 20: gsrpc.GetNotInitedRidsResp
(*DeleteNotInitedRidReq)(nil), // 21: gsrpc.DeleteNotInitedRidReq
(*DeleteNotInitedRidResp)(nil), // 22: gsrpc.DeleteNotInitedRidResp
(*RechargeDeliveReq)(nil), // 23: gsrpc.RechargeDeliveReq
(*RechargeDeliveResp)(nil), // 24: gsrpc.RechargeDeliveResp
(*RechargeGiftReq)(nil), // 25: gsrpc.RechargeGiftReq
(*RechargeGiftResp)(nil), // 26: gsrpc.RechargeGiftResp
(*RechargeAlertGiftReq)(nil), // 27: gsrpc.RechargeAlertGiftReq
(*RechargeAlertGiftResp)(nil), // 28: gsrpc.RechargeAlertGiftResp
(*GvgFleetReq)(nil), // 29: gsrpc.GvgFleetReq
(*HERO_ITEM)(nil), // 30: gsrpc.HERO_ITEM
(*WARSHIP_ITEM)(nil), // 31: gsrpc.WARSHIP_ITEM
(*GvgFleetResp)(nil), // 32: gsrpc.GvgFleetResp
(*GvgReportReq)(nil), // 33: gsrpc.GvgReportReq
(*GvgReportResp)(nil), // 34: gsrpc.GvgReportResp
(*GvgIsReadyReq)(nil), // 35: gsrpc.GvgIsReadyReq
(*GvgIsReadyResp)(nil), // 36: gsrpc.GvgIsReadyResp
(*MarqueeActiveReq)(nil), // 37: gsrpc.MarqueeActiveReq
(*MarqueeActiveResp)(nil), // 38: gsrpc.MarqueeActiveResp
}
var file_game_server_rpc_proto_depIdxs = []int32{
0, // 0: gsrpc.ServerArgsSendRoleMail.items:type_name -> gsrpc.k32v64
7, // 1: gsrpc.ServerArgsSendRoleMail.mail_lan:type_name -> gsrpc.MailLanInfo
0, // 2: gsrpc.ServerArgsSendServMail.items:type_name -> gsrpc.k32v64
7, // 3: gsrpc.ServerArgsSendServMail.mail_lan:type_name -> gsrpc.MailLanInfo
18, // 4: gsrpc.GetNotInitedRidsResp.ids:type_name -> gsrpc.NotInited
30, // 5: gsrpc.WARSHIP_ITEM.heros:type_name -> gsrpc.HERO_ITEM
31, // 6: gsrpc.GvgFleetResp.fleets:type_name -> gsrpc.WARSHIP_ITEM
1, // 7: gsrpc.GmGameServerRpc.sendGM:input_type -> gsrpc.GmSendGMReq
8, // 8: gsrpc.ServerService2.sendRoleMail:input_type -> gsrpc.ServerArgsSendRoleMail
3, // 9: gsrpc.ServerService2.exportRoleData:input_type -> gsrpc.ExportRoleDataIn
5, // 10: gsrpc.ServerService2.importRoleData:input_type -> gsrpc.ImportRoleDataIn
10, // 11: gsrpc.ServerService2.sendServMail:input_type -> gsrpc.ServerArgsSendServMail
12, // 12: gsrpc.ServerService2.offline:input_type -> gsrpc.ServerArgsOffline
16, // 13: gsrpc.ServerService2.timeJump:input_type -> gsrpc.ServerArgsTimeJump
19, // 14: gsrpc.ServerService2.getNotInitedRids:input_type -> gsrpc.GetNotInitedRidsReq
21, // 15: gsrpc.ServerService2.deleteNotInitRid:input_type -> gsrpc.DeleteNotInitedRidReq
23, // 16: gsrpc.RechargeGameServerRpc.delive:input_type -> gsrpc.RechargeDeliveReq
25, // 17: gsrpc.RechargeGameServerRpc.addGift:input_type -> gsrpc.RechargeGiftReq
27, // 18: gsrpc.RechargeGameServerRpc.addAlertGift:input_type -> gsrpc.RechargeAlertGiftReq
29, // 19: gsrpc.GvgGameServerRpc.getGvgFleetByRid:input_type -> gsrpc.GvgFleetReq
33, // 20: gsrpc.GvgGameServerRpc.sendGvgReport:input_type -> gsrpc.GvgReportReq
35, // 21: gsrpc.GvgGameServerRpc.isReady:input_type -> gsrpc.GvgIsReadyReq
37, // 22: gsrpc.MarqueeGameServerRpc.marqueeActive:input_type -> gsrpc.MarqueeActiveReq
2, // 23: gsrpc.GmGameServerRpc.sendGM:output_type -> gsrpc.GmSendGMResp
9, // 24: gsrpc.ServerService2.sendRoleMail:output_type -> gsrpc.ServerReplySendRoleMail
4, // 25: gsrpc.ServerService2.exportRoleData:output_type -> gsrpc.ExportRoleDataOut
6, // 26: gsrpc.ServerService2.importRoleData:output_type -> gsrpc.ImportRoleDataOut
11, // 27: gsrpc.ServerService2.sendServMail:output_type -> gsrpc.ServerReplySendServMail
13, // 28: gsrpc.ServerService2.offline:output_type -> gsrpc.ServerReplyOffline
17, // 29: gsrpc.ServerService2.timeJump:output_type -> gsrpc.ServerReplyTimeJump
20, // 30: gsrpc.ServerService2.getNotInitedRids:output_type -> gsrpc.GetNotInitedRidsResp
22, // 31: gsrpc.ServerService2.deleteNotInitRid:output_type -> gsrpc.DeleteNotInitedRidResp
24, // 32: gsrpc.RechargeGameServerRpc.delive:output_type -> gsrpc.RechargeDeliveResp
26, // 33: gsrpc.RechargeGameServerRpc.addGift:output_type -> gsrpc.RechargeGiftResp
28, // 34: gsrpc.RechargeGameServerRpc.addAlertGift:output_type -> gsrpc.RechargeAlertGiftResp
32, // 35: gsrpc.GvgGameServerRpc.getGvgFleetByRid:output_type -> gsrpc.GvgFleetResp
34, // 36: gsrpc.GvgGameServerRpc.sendGvgReport:output_type -> gsrpc.GvgReportResp
36, // 37: gsrpc.GvgGameServerRpc.isReady:output_type -> gsrpc.GvgIsReadyResp
38, // 38: gsrpc.MarqueeGameServerRpc.marqueeActive:output_type -> gsrpc.MarqueeActiveResp
23, // [23:39] is the sub-list for method output_type
7, // [7:23] is the sub-list for method input_type
7, // [7:7] is the sub-list for extension type_name
7, // [7:7] is the sub-list for extension extendee
0, // [0:7] is the sub-list for field type_name
}
func init() { file_game_server_rpc_proto_init() }
func file_game_server_rpc_proto_init() {
if File_game_server_rpc_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_game_server_rpc_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*K32V64); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GmSendGMReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GmSendGMResp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExportRoleDataIn); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExportRoleDataOut); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ImportRoleDataIn); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ImportRoleDataOut); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MailLanInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ServerArgsSendRoleMail); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ServerReplySendRoleMail); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ServerArgsSendServMail); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ServerReplySendServMail); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ServerArgsOffline); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ServerReplyOffline); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ServerArgsRechargePush); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ServerReplyRechargePush); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ServerArgsTimeJump); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ServerReplyTimeJump); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*NotInited); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GetNotInitedRidsReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GetNotInitedRidsResp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DeleteNotInitedRidReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DeleteNotInitedRidResp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RechargeDeliveReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RechargeDeliveResp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RechargeGiftReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RechargeGiftResp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RechargeAlertGiftReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RechargeAlertGiftResp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GvgFleetReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HERO_ITEM); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*WARSHIP_ITEM); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GvgFleetResp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GvgReportReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GvgReportResp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GvgIsReadyReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GvgIsReadyResp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MarqueeActiveReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_game_server_rpc_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MarqueeActiveResp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_game_server_rpc_proto_rawDesc,
NumEnums: 0,
NumMessages: 39,
NumExtensions: 0,
NumServices: 5,
},
GoTypes: file_game_server_rpc_proto_goTypes,
DependencyIndexes: file_game_server_rpc_proto_depIdxs,
MessageInfos: file_game_server_rpc_proto_msgTypes,
}.Build()
File_game_server_rpc_proto = out.File
file_game_server_rpc_proto_rawDesc = nil
file_game_server_rpc_proto_goTypes = nil
file_game_server_rpc_proto_depIdxs = nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/MikeDDD/gu.git
git@gitee.com:MikeDDD/gu.git
MikeDDD
gu
gu
v0.0.126

搜索帮助