463 lines
15 KiB
Go
463 lines
15 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// versions:
|
|
// protoc-gen-go v1.28.0
|
|
// protoc v3.20.0
|
|
// source: battle/battle_msg.proto
|
|
|
|
package pb
|
|
|
|
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)
|
|
)
|
|
|
|
// pve 战斗创建请求 (此请求 为服务端间使用 客户端可忽略)
|
|
type BattlePVEReq struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Ptype PlayType `protobuf:"varint,1,opt,name=ptype,proto3,enum=PlayType" json:"ptype"` //玩法类型
|
|
Levelid int32 `protobuf:"varint,2,opt,name=levelid,proto3" json:"levelid"` //关卡id
|
|
Leadpos int32 `protobuf:"varint,3,opt,name=leadpos,proto3" json:"leadpos"` //队长位置
|
|
Teamids []string `protobuf:"bytes,4,rep,name=teamids,proto3" json:"teamids"` //阵容信息
|
|
Mformat []int32 `protobuf:"varint,5,rep,packed,name=mformat,proto3" json:"mformat"` //敌方增容信息
|
|
}
|
|
|
|
func (x *BattlePVEReq) Reset() {
|
|
*x = BattlePVEReq{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_battle_battle_msg_proto_msgTypes[0]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *BattlePVEReq) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*BattlePVEReq) ProtoMessage() {}
|
|
|
|
func (x *BattlePVEReq) ProtoReflect() protoreflect.Message {
|
|
mi := &file_battle_battle_msg_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 BattlePVEReq.ProtoReflect.Descriptor instead.
|
|
func (*BattlePVEReq) Descriptor() ([]byte, []int) {
|
|
return file_battle_battle_msg_proto_rawDescGZIP(), []int{0}
|
|
}
|
|
|
|
func (x *BattlePVEReq) GetPtype() PlayType {
|
|
if x != nil {
|
|
return x.Ptype
|
|
}
|
|
return PlayType_mainline
|
|
}
|
|
|
|
func (x *BattlePVEReq) GetLevelid() int32 {
|
|
if x != nil {
|
|
return x.Levelid
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *BattlePVEReq) GetLeadpos() int32 {
|
|
if x != nil {
|
|
return x.Leadpos
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *BattlePVEReq) GetTeamids() []string {
|
|
if x != nil {
|
|
return x.Teamids
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *BattlePVEReq) GetMformat() []int32 {
|
|
if x != nil {
|
|
return x.Mformat
|
|
}
|
|
return nil
|
|
}
|
|
|
|
//战斗开始推送
|
|
type BattleStartPush struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` //战斗id
|
|
Btype BattleType `protobuf:"varint,2,opt,name=btype,proto3,enum=BattleType" json:"btype"` //战斗类型
|
|
Ptype PlayType `protobuf:"varint,3,opt,name=ptype,proto3,enum=PlayType" json:"ptype"` //玩法类型
|
|
RedCompId string `protobuf:"bytes,4,opt,name=redCompId,proto3" json:"redCompId"` //红方阵营id
|
|
Redflist []*DBBattleFormt `protobuf:"bytes,5,rep,name=redflist,proto3" json:"redflist"` //红方阵型列表
|
|
BlueCompId string `protobuf:"bytes,6,opt,name=blueCompId,proto3" json:"blueCompId"` //蓝方阵营id
|
|
Buleflist []*DBBattleFormt `protobuf:"bytes,7,rep,name=buleflist,proto3" json:"buleflist"` //红方阵型列表
|
|
}
|
|
|
|
func (x *BattleStartPush) Reset() {
|
|
*x = BattleStartPush{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_battle_battle_msg_proto_msgTypes[1]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *BattleStartPush) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*BattleStartPush) ProtoMessage() {}
|
|
|
|
func (x *BattleStartPush) ProtoReflect() protoreflect.Message {
|
|
mi := &file_battle_battle_msg_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 BattleStartPush.ProtoReflect.Descriptor instead.
|
|
func (*BattleStartPush) Descriptor() ([]byte, []int) {
|
|
return file_battle_battle_msg_proto_rawDescGZIP(), []int{1}
|
|
}
|
|
|
|
func (x *BattleStartPush) GetId() string {
|
|
if x != nil {
|
|
return x.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BattleStartPush) GetBtype() BattleType {
|
|
if x != nil {
|
|
return x.Btype
|
|
}
|
|
return BattleType_nil
|
|
}
|
|
|
|
func (x *BattleStartPush) GetPtype() PlayType {
|
|
if x != nil {
|
|
return x.Ptype
|
|
}
|
|
return PlayType_mainline
|
|
}
|
|
|
|
func (x *BattleStartPush) GetRedCompId() string {
|
|
if x != nil {
|
|
return x.RedCompId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BattleStartPush) GetRedflist() []*DBBattleFormt {
|
|
if x != nil {
|
|
return x.Redflist
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *BattleStartPush) GetBlueCompId() string {
|
|
if x != nil {
|
|
return x.BlueCompId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BattleStartPush) GetBuleflist() []*DBBattleFormt {
|
|
if x != nil {
|
|
return x.Buleflist
|
|
}
|
|
return nil
|
|
}
|
|
|
|
//战斗结果请求
|
|
type BattleResultReq struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` //战斗id
|
|
Iswin bool `protobuf:"varint,2,opt,name=iswin,proto3" json:"iswin"` //是否胜利
|
|
}
|
|
|
|
func (x *BattleResultReq) Reset() {
|
|
*x = BattleResultReq{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_battle_battle_msg_proto_msgTypes[2]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *BattleResultReq) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*BattleResultReq) ProtoMessage() {}
|
|
|
|
func (x *BattleResultReq) ProtoReflect() protoreflect.Message {
|
|
mi := &file_battle_battle_msg_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 BattleResultReq.ProtoReflect.Descriptor instead.
|
|
func (*BattleResultReq) Descriptor() ([]byte, []int) {
|
|
return file_battle_battle_msg_proto_rawDescGZIP(), []int{2}
|
|
}
|
|
|
|
func (x *BattleResultReq) GetId() string {
|
|
if x != nil {
|
|
return x.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BattleResultReq) GetIswin() bool {
|
|
if x != nil {
|
|
return x.Iswin
|
|
}
|
|
return false
|
|
}
|
|
|
|
//战斗结果请求
|
|
type BattleResultResp struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` //战斗id
|
|
Issucc bool `protobuf:"varint,2,opt,name=issucc,proto3" json:"issucc"` //是否生效
|
|
}
|
|
|
|
func (x *BattleResultResp) Reset() {
|
|
*x = BattleResultResp{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_battle_battle_msg_proto_msgTypes[3]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *BattleResultResp) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*BattleResultResp) ProtoMessage() {}
|
|
|
|
func (x *BattleResultResp) ProtoReflect() protoreflect.Message {
|
|
mi := &file_battle_battle_msg_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 BattleResultResp.ProtoReflect.Descriptor instead.
|
|
func (*BattleResultResp) Descriptor() ([]byte, []int) {
|
|
return file_battle_battle_msg_proto_rawDescGZIP(), []int{3}
|
|
}
|
|
|
|
func (x *BattleResultResp) GetId() string {
|
|
if x != nil {
|
|
return x.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BattleResultResp) GetIssucc() bool {
|
|
if x != nil {
|
|
return x.Issucc
|
|
}
|
|
return false
|
|
}
|
|
|
|
var File_battle_battle_msg_proto protoreflect.FileDescriptor
|
|
|
|
var file_battle_battle_msg_proto_rawDesc = []byte{
|
|
0x0a, 0x17, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x2f, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f,
|
|
0x6d, 0x73, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x16, 0x62, 0x61, 0x74, 0x74, 0x6c,
|
|
0x65, 0x2f, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x64, 0x62, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
0x6f, 0x22, 0x97, 0x01, 0x0a, 0x0c, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x50, 0x56, 0x45, 0x52,
|
|
0x65, 0x71, 0x12, 0x1f, 0x0a, 0x05, 0x70, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
0x0e, 0x32, 0x09, 0x2e, 0x50, 0x6c, 0x61, 0x79, 0x54, 0x79, 0x70, 0x65, 0x52, 0x05, 0x70, 0x74,
|
|
0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x69, 0x64, 0x18, 0x02,
|
|
0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x69, 0x64, 0x12, 0x18, 0x0a,
|
|
0x07, 0x6c, 0x65, 0x61, 0x64, 0x70, 0x6f, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07,
|
|
0x6c, 0x65, 0x61, 0x64, 0x70, 0x6f, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x65, 0x61, 0x6d, 0x69,
|
|
0x64, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x74, 0x65, 0x61, 0x6d, 0x69, 0x64,
|
|
0x73, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x18, 0x05, 0x20, 0x03,
|
|
0x28, 0x05, 0x52, 0x07, 0x6d, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x22, 0xfd, 0x01, 0x0a, 0x0f,
|
|
0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x50, 0x75, 0x73, 0x68, 0x12,
|
|
0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12,
|
|
0x21, 0x0a, 0x05, 0x62, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0b,
|
|
0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x05, 0x62, 0x74, 0x79,
|
|
0x70, 0x65, 0x12, 0x1f, 0x0a, 0x05, 0x70, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
|
|
0x0e, 0x32, 0x09, 0x2e, 0x50, 0x6c, 0x61, 0x79, 0x54, 0x79, 0x70, 0x65, 0x52, 0x05, 0x70, 0x74,
|
|
0x79, 0x70, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x72, 0x65, 0x64, 0x43, 0x6f, 0x6d, 0x70, 0x49, 0x64,
|
|
0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x72, 0x65, 0x64, 0x43, 0x6f, 0x6d, 0x70, 0x49,
|
|
0x64, 0x12, 0x2a, 0x0a, 0x08, 0x72, 0x65, 0x64, 0x66, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x05, 0x20,
|
|
0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x44, 0x42, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x46, 0x6f,
|
|
0x72, 0x6d, 0x74, 0x52, 0x08, 0x72, 0x65, 0x64, 0x66, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x1e, 0x0a,
|
|
0x0a, 0x62, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28,
|
|
0x09, 0x52, 0x0a, 0x62, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x49, 0x64, 0x12, 0x2c, 0x0a,
|
|
0x09, 0x62, 0x75, 0x6c, 0x65, 0x66, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b,
|
|
0x32, 0x0e, 0x2e, 0x44, 0x42, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x46, 0x6f, 0x72, 0x6d, 0x74,
|
|
0x52, 0x09, 0x62, 0x75, 0x6c, 0x65, 0x66, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x37, 0x0a, 0x0f, 0x42,
|
|
0x61, 0x74, 0x74, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x71, 0x12, 0x0e,
|
|
0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14,
|
|
0x0a, 0x05, 0x69, 0x73, 0x77, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x69,
|
|
0x73, 0x77, 0x69, 0x6e, 0x22, 0x3a, 0x0a, 0x10, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x52, 0x65,
|
|
0x73, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
|
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x73, 0x75,
|
|
0x63, 0x63, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x73, 0x75, 0x63, 0x63,
|
|
0x42, 0x06, 0x5a, 0x04, 0x2e, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
}
|
|
|
|
var (
|
|
file_battle_battle_msg_proto_rawDescOnce sync.Once
|
|
file_battle_battle_msg_proto_rawDescData = file_battle_battle_msg_proto_rawDesc
|
|
)
|
|
|
|
func file_battle_battle_msg_proto_rawDescGZIP() []byte {
|
|
file_battle_battle_msg_proto_rawDescOnce.Do(func() {
|
|
file_battle_battle_msg_proto_rawDescData = protoimpl.X.CompressGZIP(file_battle_battle_msg_proto_rawDescData)
|
|
})
|
|
return file_battle_battle_msg_proto_rawDescData
|
|
}
|
|
|
|
var file_battle_battle_msg_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
|
|
var file_battle_battle_msg_proto_goTypes = []interface{}{
|
|
(*BattlePVEReq)(nil), // 0: BattlePVEReq
|
|
(*BattleStartPush)(nil), // 1: BattleStartPush
|
|
(*BattleResultReq)(nil), // 2: BattleResultReq
|
|
(*BattleResultResp)(nil), // 3: BattleResultResp
|
|
(PlayType)(0), // 4: PlayType
|
|
(BattleType)(0), // 5: BattleType
|
|
(*DBBattleFormt)(nil), // 6: DBBattleFormt
|
|
}
|
|
var file_battle_battle_msg_proto_depIdxs = []int32{
|
|
4, // 0: BattlePVEReq.ptype:type_name -> PlayType
|
|
5, // 1: BattleStartPush.btype:type_name -> BattleType
|
|
4, // 2: BattleStartPush.ptype:type_name -> PlayType
|
|
6, // 3: BattleStartPush.redflist:type_name -> DBBattleFormt
|
|
6, // 4: BattleStartPush.buleflist:type_name -> DBBattleFormt
|
|
5, // [5:5] is the sub-list for method output_type
|
|
5, // [5:5] is the sub-list for method input_type
|
|
5, // [5:5] is the sub-list for extension type_name
|
|
5, // [5:5] is the sub-list for extension extendee
|
|
0, // [0:5] is the sub-list for field type_name
|
|
}
|
|
|
|
func init() { file_battle_battle_msg_proto_init() }
|
|
func file_battle_battle_msg_proto_init() {
|
|
if File_battle_battle_msg_proto != nil {
|
|
return
|
|
}
|
|
file_battle_battle_db_proto_init()
|
|
if !protoimpl.UnsafeEnabled {
|
|
file_battle_battle_msg_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*BattlePVEReq); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_battle_battle_msg_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*BattleStartPush); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_battle_battle_msg_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*BattleResultReq); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_battle_battle_msg_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*BattleResultResp); 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_battle_battle_msg_proto_rawDesc,
|
|
NumEnums: 0,
|
|
NumMessages: 4,
|
|
NumExtensions: 0,
|
|
NumServices: 0,
|
|
},
|
|
GoTypes: file_battle_battle_msg_proto_goTypes,
|
|
DependencyIndexes: file_battle_battle_msg_proto_depIdxs,
|
|
MessageInfos: file_battle_battle_msg_proto_msgTypes,
|
|
}.Build()
|
|
File_battle_battle_msg_proto = out.File
|
|
file_battle_battle_msg_proto_rawDesc = nil
|
|
file_battle_battle_msg_proto_goTypes = nil
|
|
file_battle_battle_msg_proto_depIdxs = nil
|
|
}
|