@@ -89,8 +89,10 @@ type EnterResp struct {
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
SceneSID int64 ` protobuf:"varint,1,opt,name=SceneSID,proto3" json:"SceneSID,omitempty" ` // 场景服务ID
UniqueNo int64 ` protobuf:"varint,2,opt,name=UniqueNo,proto3" json:"UniqueNo,omitempty" ` // 副本唯一编号
SceneSID int64 ` protobuf:"varint,1,opt,name=SceneSID,proto3" json:"SceneSID,omitempty" ` // 场景服务ID
UniqueNo int64 ` protobuf:"varint,2,opt,name=UniqueNo,proto3" json:"UniqueNo,omitempty" ` // 副本唯一编号
MessageID int32 ` protobuf:"varint,3,opt,name=MessageID,proto3" json:"MessageID,omitempty" ` // 发送给客户端的消息ID
Payload [ ] byte ` protobuf:"bytes,4,opt,name=Payload,proto3" json:"Payload,omitempty" ` // 消息负载
}
func ( x * EnterResp ) Reset ( ) {
@@ -139,21 +141,146 @@ func (x *EnterResp) GetUniqueNo() int64 {
return 0
}
func ( x * EnterResp ) GetMessageID ( ) int32 {
if x != nil {
return x . MessageID
}
return 0
}
func ( x * EnterResp ) GetPayload ( ) [ ] byte {
if x != nil {
return x . Payload
}
return nil
}
type LeaveReq struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
UID int32 ` protobuf:"varint,1,opt,name=UID,proto3" json:"UID,omitempty" ` // 用户ID
GatewaySID int64 ` protobuf:"varint,2,opt,name=GatewaySID,proto3" json:"GatewaySID,omitempty" ` // 网关服务ID
InstanceID int32 ` protobuf:"varint,3,opt,name=InstanceID,proto3" json:"InstanceID,omitempty" ` // 副本ID
UniqueNo int64 ` protobuf:"varint,4,opt,name=UniqueNo,proto3" json:"UniqueNo,omitempty" ` // 副本唯一编号
}
func ( x * LeaveReq ) Reset ( ) {
* x = LeaveReq { }
if protoimpl . UnsafeEnabled {
mi := & file_service_scene_proto_msgTypes [ 2 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * LeaveReq ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * LeaveReq ) ProtoMessage ( ) { }
func ( x * LeaveReq ) ProtoReflect ( ) protoreflect . Message {
mi := & file_service_scene_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 LeaveReq.ProtoReflect.Descriptor instead.
func ( * LeaveReq ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_service_scene_proto_rawDescGZIP ( ) , [ ] int { 2 }
}
func ( x * LeaveReq ) GetUID ( ) int32 {
if x != nil {
return x . UID
}
return 0
}
func ( x * LeaveReq ) GetGatewaySID ( ) int64 {
if x != nil {
return x . GatewaySID
}
return 0
}
func ( x * LeaveReq ) GetInstanceID ( ) int32 {
if x != nil {
return x . InstanceID
}
return 0
}
func ( x * LeaveReq ) GetUniqueNo ( ) int64 {
if x != nil {
return x . UniqueNo
}
return 0
}
type LeaveResp struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
}
func ( x * LeaveResp ) Reset ( ) {
* x = LeaveResp { }
if protoimpl . UnsafeEnabled {
mi := & file_service_scene_proto_msgTypes [ 3 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * LeaveResp ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * LeaveResp ) ProtoMessage ( ) { }
func ( x * LeaveResp ) ProtoReflect ( ) protoreflect . Message {
mi := & file_service_scene_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 LeaveResp.ProtoReflect.Descriptor instead.
func ( * LeaveResp ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_service_scene_proto_rawDescGZIP ( ) , [ ] int { 3 }
}
type ActionReq struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
UniqueNo int64 ` protobuf:"varint,1,opt,name=UniqueNo,proto3" json:"UniqueNo,omitempty" ` // 副本唯一编号
UID int32 ` protobuf:"varint,2,opt,name=UID,proto3" json:"UID,omitempty" ` // 用户ID
Action int32 ` protobuf:"varint,3,opt,name=Action,proto3" json:"Action,omitempty" ` // 动作 ID
Payload [ ] byte ` protobuf:"bytes ,4,opt,name=Payload ,proto3" json:"Payload ,omitempty" ` // 动作数据
UniqueNo int64 ` protobuf:"varint,1,opt,name=UniqueNo,proto3" json:"UniqueNo,omitempty" ` // 副本唯一编号
UID int32 ` protobuf:"varint,2,opt,name=UID,proto3" json:"UID,omitempty" ` // 用户ID
Action int32 ` protobuf:"varint,3,opt,name=Action,proto3" json:"Action,omitempty" ` // 指令 ID
DirX int32 ` protobuf:"zigzag32 ,4,opt,name=DirX ,proto3" json:"DirX ,omitempty" ` // 移动-X方向( × 1000 缩放)
DirY int32 ` protobuf:"zigzag32,5,opt,name=DirY,proto3" json:"DirY,omitempty" ` // 移动-Y方向( × 1000 缩放)
SkillID int32 ` protobuf:"varint,6,opt,name=SkillID,proto3" json:"SkillID,omitempty" ` // 攻击-技能ID
}
func ( x * ActionReq ) Reset ( ) {
* x = ActionReq { }
if protoimpl . UnsafeEnabled {
mi := & file_service_scene_proto_msgTypes [ 2 ]
mi := & file_service_scene_proto_msgTypes [ 4 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
@@ -166,7 +293,7 @@ func (x *ActionReq) String() string {
func ( * ActionReq ) ProtoMessage ( ) { }
func ( x * ActionReq ) ProtoReflect ( ) protoreflect . Message {
mi := & file_service_scene_proto_msgTypes [ 2 ]
mi := & file_service_scene_proto_msgTypes [ 4 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
@@ -179,7 +306,7 @@ func (x *ActionReq) ProtoReflect() protoreflect.Message {
// Deprecated: Use ActionReq.ProtoReflect.Descriptor instead.
func ( * ActionReq ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_service_scene_proto_rawDescGZIP ( ) , [ ] int { 2 }
return file_service_scene_proto_rawDescGZIP ( ) , [ ] int { 4 }
}
func ( x * ActionReq ) GetUniqueNo ( ) int64 {
@@ -203,11 +330,25 @@ func (x *ActionReq) GetAction() int32 {
return 0
}
func ( x * ActionReq ) GetPayload ( ) [ ] byte {
func ( x * ActionReq ) GetDirX ( ) int32 {
if x != nil {
return x . Payload
return x . DirX
}
return nil
return 0
}
func ( x * ActionReq ) GetDirY ( ) int32 {
if x != nil {
return x . DirY
}
return 0
}
func ( x * ActionReq ) GetSkillID ( ) int32 {
if x != nil {
return x . SkillID
}
return 0
}
type ActionResp struct {
@@ -219,7 +360,7 @@ type ActionResp struct {
func ( x * ActionResp ) Reset ( ) {
* x = ActionResp { }
if protoimpl . UnsafeEnabled {
mi := & file_service_scene_proto_msgTypes [ 3 ]
mi := & file_service_scene_proto_msgTypes [ 5 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
@@ -232,7 +373,7 @@ func (x *ActionResp) String() string {
func ( * ActionResp ) ProtoMessage ( ) { }
func ( x * ActionResp ) ProtoReflect ( ) protoreflect . Message {
mi := & file_service_scene_proto_msgTypes [ 3 ]
mi := & file_service_scene_proto_msgTypes [ 5 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
@@ -245,7 +386,7 @@ func (x *ActionResp) ProtoReflect() protoreflect.Message {
// Deprecated: Use ActionResp.ProtoReflect.Descriptor instead.
func ( * ActionResp ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_service_scene_proto_rawDescGZIP ( ) , [ ] int { 3 }
return file_service_scene_proto_rawDescGZIP ( ) , [ ] int { 5 }
}
var File_service_scene_proto protoreflect . FileDescriptor
@@ -259,26 +400,43 @@ var file_service_scene_proto_rawDesc = []byte{
0x49 , 0x44 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x0a , 0x47 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 ,
0x79 , 0x53 , 0x49 , 0x44 , 0x12 , 0x1e , 0x0a , 0x0a , 0x49 , 0x6e , 0x73 , 0x74 , 0x61 , 0x6e , 0x63 , 0x65 ,
0x49 , 0x44 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x0a , 0x49 , 0x6e , 0x73 , 0x74 , 0x61 , 0x6e ,
0x63 , 0x65 , 0x49 , 0x44 , 0x22 , 0x43 , 0x0a , 0x09 , 0x45 , 0x6e , 0x74 , 0x65 , 0x72 , 0x52 , 0x65 , 0x73 ,
0x63 , 0x65 , 0x49 , 0x44 , 0x22 , 0x7b , 0x0a , 0x09 , 0x45 , 0x6e , 0x74 , 0x65 , 0x72 , 0x52 , 0x65 , 0x73 ,
0x70 , 0x12 , 0x1a , 0x0a , 0x08 , 0x53 , 0x63 , 0x65 , 0x6e , 0x65 , 0x53 , 0x49 , 0x44 , 0x18 , 0x01 , 0x20 ,
0x01 , 0x28 , 0x03 , 0x52 , 0x08 , 0x53 , 0x63 , 0x65 , 0x6e , 0x65 , 0x53 , 0x49 , 0x44 , 0x12 , 0x1a , 0x0a ,
0x08 , 0x55 , 0x6e , 0x69 , 0x71 , 0x75 , 0x65 , 0x4e , 0x6f , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 ,
0x08 , 0x55 , 0x6e , 0x69 , 0x71 , 0x75 , 0x65 , 0x4e , 0x6f , 0x2 2 , 0x6b , 0x0a , 0x09 , 0x41 , 0x63 , 0x74 ,
0x08 , 0x55 , 0x6e , 0x69 , 0x71 , 0x75 , 0x65 , 0x4e , 0x6f , 0x1 2 , 0x1c , 0x0a , 0x09 , 0x4d , 0x65 , 0x73 ,
0x73 , 0x61 , 0x67 , 0x65 , 0x49 , 0x44 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x09 , 0x4d , 0x65 ,
0x73 , 0x73 , 0x61 , 0x67 , 0x65 , 0x49 , 0x44 , 0x12 , 0x18 , 0x0a , 0x07 , 0x50 , 0x61 , 0x79 , 0x6c , 0x6f ,
0x61 , 0x64 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x07 , 0x50 , 0x61 , 0x79 , 0x6c , 0x6f , 0x61 ,
0x64 , 0x22 , 0x78 , 0x0a , 0x08 , 0x4c , 0x65 , 0x61 , 0x76 , 0x65 , 0x52 , 0x65 , 0x71 , 0x12 , 0x10 , 0x0a ,
0x03 , 0x55 , 0x49 , 0x44 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x03 , 0x55 , 0x49 , 0x44 , 0x12 ,
0x1e , 0x0a , 0x0a , 0x47 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x53 , 0x49 , 0x44 , 0x18 , 0x02 , 0x20 ,
0x01 , 0x28 , 0x03 , 0x52 , 0x0a , 0x47 , 0x61 , 0x74 , 0x65 , 0x77 , 0x61 , 0x79 , 0x53 , 0x49 , 0x44 , 0x12 ,
0x1e , 0x0a , 0x0a , 0x49 , 0x6e , 0x73 , 0x74 , 0x61 , 0x6e , 0x63 , 0x65 , 0x49 , 0x44 , 0x18 , 0x03 , 0x20 ,
0x01 , 0x28 , 0x05 , 0x52 , 0x0a , 0x49 , 0x6e , 0x73 , 0x74 , 0x61 , 0x6e , 0x63 , 0x65 , 0x49 , 0x44 , 0x12 ,
0x1a , 0x0a , 0x08 , 0x55 , 0x6e , 0x69 , 0x71 , 0x75 , 0x65 , 0x4e , 0x6f , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 ,
0x03 , 0x52 , 0x08 , 0x55 , 0x6e , 0x69 , 0x71 , 0x75 , 0x65 , 0x4e , 0x6f , 0x22 , 0x0b , 0x0a , 0x09 , 0x4c ,
0x65 , 0x61 , 0x76 , 0x65 , 0x52 , 0x65 , 0x73 , 0x70 , 0x22 , 0x93 , 0x01 , 0x0a , 0x09 , 0x41 , 0x63 , 0x74 ,
0x69 , 0x6f , 0x6e , 0x52 , 0x65 , 0x71 , 0x12 , 0x1a , 0x0a , 0x08 , 0x55 , 0x6e , 0x69 , 0x71 , 0x75 , 0x65 ,
0x4e , 0x6f , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x08 , 0x55 , 0x6e , 0x69 , 0x71 , 0x75 , 0x65 ,
0x4e , 0x6f , 0x12 , 0x10 , 0x0a , 0x03 , 0x55 , 0x49 , 0x44 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 ,
0x03 , 0x55 , 0x49 , 0x44 , 0x12 , 0x16 , 0x0a , 0x06 , 0x41 , 0x63 , 0x74 , 0x69 , 0x6f , 0x6e , 0x18 , 0x03 ,
0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x06 , 0x41 , 0x63 , 0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x18 , 0x0a , 0x07 ,
0x50 , 0x61 , 0x79 , 0x6c , 0x6f , 0x61 , 0x64 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x0 7 , 0x50 ,
0x6 1 , 0x79 , 0x6c , 0x6f , 0x61 , 0x64 , 0x2 2 , 0x0c , 0x0a , 0x0a , 0x41 , 0x63 , 0x74 , 0x69 , 0x6f , 0x6e ,
0x52 , 0x65 , 0x73 , 0x70 , 0x3 2 , 0x50 , 0x0a , 0x05 , 0x53 , 0x63 , 0x65 , 0x6e , 0x65 , 0x12 , 0x20 , 0x0a ,
0x05 , 0x45 , 0x6e , 0x74 , 0x6 5 , 0x7 2 , 0x12 , 0x09 , 0x2e , 0x45 , 0x6e , 0x74 , 0x65 , 0x72 , 0x5 2 , 0x65 ,
0x71 , 0x1 a , 0x0a , 0x2e , 0x45 , 0x6e , 0x74 , 0x65 , 0x72 , 0x52 , 0x65 , 0x73 , 0x70 , 0x2 2 , 0x00 , 0x12 ,
0x2 5 , 0x0a , 0x0 6 , 0x41 , 0x63 , 0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x0a , 0x2e , 0x41 , 0x63 , 0x74 , 0x6 9 ,
0x6f , 0x6e , 0x52 , 0x65 , 0x71 , 0x1a , 0x0b , 0x2e , 0x4 1 , 0x63 , 0x74 , 0x69 , 0x6f , 0x6e , 0x52 , 0x65 ,
0x73 , 0x70 , 0x22 , 0x00 , 0x28 , 0x01 , 0x42 , 0x19 , 0x5a , 0x17 , 0x63 , 0x6f , 0x6d , 0x6d , 0x6f , 0x6e ,
0x2f , 0x7 0 , 0x7 2 , 0x6f , 0x74 , 0x6f , 0x2f , 0x73 , 0x73 , 0x2f , 0x6 7 , 0x72 , 0x7 0 , 0x63 , 0x5f , 0x70 ,
0x62 , 0x62 , 0x0 6 , 0x70 , 0x7 2 , 0x6f , 0x7 4 , 0x6f , 0x33 ,
0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x06 , 0x41 , 0x63 , 0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x12 , 0x0a , 0x04 ,
0x44 , 0x69 , 0x72 , 0x58 , 0x18 , 0x04 , 0x20 , 0x0 1 , 0x28 , 0x11 , 0x52 , 0x04 , 0x44 , 0x69 , 0x72 , 0x58 ,
0x12 , 0x12 , 0x0a , 0x04 , 0x44 , 0x69 , 0x7 2 , 0x59 , 0x18 , 0x05 , 0x20 , 0x01 , 0x28 , 0x11 , 0x52 , 0x04 ,
0x44 , 0x69 , 0x72 , 0x59 , 0x1 2 , 0x18 , 0x0a , 0x07 , 0x53 , 0x6b , 0x69 , 0x6c , 0x6c , 0x49 , 0x44 , 0x18 ,
0x06 , 0x20 , 0x01 , 0x28 , 0x0 5 , 0x5 2 , 0x07 , 0x53 , 0x6b , 0x69 , 0x6c , 0x6c , 0x49 , 0x44 , 0x2 2 , 0x0c ,
0x0 a , 0x0a , 0x41 , 0x63 , 0x7 4 , 0x69 , 0x6f , 0x6e , 0x52 , 0x65 , 0x73 , 0x70 , 0x3 2 , 0x72 , 0x0a , 0x05 ,
0x53 , 0x63 , 0x65 , 0x6e , 0x65 , 0x12 , 0x20 , 0x0a , 0x05 , 0x45 , 0x6e , 0x74 , 0x65 , 0x72 , 0x12 , 0x0 9 ,
0x2e , 0x45 , 0x6e , 0x74 , 0x65 , 0x72 , 0x52 , 0x65 , 0x7 1 , 0x1a , 0x0a , 0x2e , 0x45 , 0x6e , 0x74 , 0x65 ,
0x72 , 0x52 , 0x65 , 0x73, 0x70 , 0x22 , 0x00 , 0x12 , 0x20 , 0x0a , 0x05 , 0x4c , 0x65 , 0x61 , 0x7 6 , 0x65 ,
0x1 2 , 0x09 , 0x2e , 0x4c , 0x65 , 0x61 , 0x76 , 0x65 , 0x52 , 0x65 , 0x71 , 0x1a , 0x0a , 0x2e , 0x4c , 0x65 ,
0x61 , 0x7 6 , 0x65 , 0x52 , 0x65 , 0x73 , 0x70 , 0x2 2 , 0x00 , 0x12 , 0x25 , 0x0a , 0x0 6 , 0x41 , 0x63 , 0x74 ,
0x69 , 0x6f , 0x6e , 0x12 , 0x0a , 0x2e , 0x41 , 0x63 , 0x74 , 0x69 , 0x6f , 0x6e , 0x52 , 0x65 , 0x71 , 0x1a ,
0x0b , 0x2e , 0x41 , 0x63 , 0x74 , 0x69 , 0x6f , 0x6e , 0x52 , 0x65 , 0x73 , 0x70 , 0x22 , 0x00 , 0x28 , 0x01 ,
0x42 , 0x19 , 0x5a , 0x17 , 0x63 , 0x6f , 0x6d , 0x6d , 0x6f , 0x6e , 0x2f , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f ,
0x2f , 0x73 , 0x73 , 0x2f , 0x67 , 0x72 , 0x70 , 0x63 , 0x5f , 0x70 , 0x62 , 0x62 , 0x06 , 0x70 , 0x72 , 0x6f ,
0x74 , 0x6f , 0x33 ,
}
var (
@@ -293,20 +451,24 @@ func file_service_scene_proto_rawDescGZIP() []byte {
return file_service_scene_proto_rawDescData
}
var file_service_scene_proto_msgTypes = make ( [ ] protoimpl . MessageInfo , 4 )
var file_service_scene_proto_msgTypes = make ( [ ] protoimpl . MessageInfo , 6 )
var file_service_scene_proto_goTypes = [ ] interface { } {
( * EnterReq ) ( nil ) , // 0: EnterReq
( * EnterResp ) ( nil ) , // 1: EnterResp
( * Action Req) ( nil ) , // 2: Action Req
( * Action Resp) ( nil ) , // 3: Action Resp
( * Leave Req) ( nil ) , // 2: Leave Req
( * Leave Resp) ( nil ) , // 3: Leave Resp
( * ActionReq ) ( nil ) , // 4: ActionReq
( * ActionResp ) ( nil ) , // 5: ActionResp
}
var file_service_scene_proto_depIdxs = [ ] int32 {
0 , // 0: Scene.Enter:input_type -> EnterReq
2 , // 1: Scene.Action :input_type -> Action Req
1 , // 2: Scene.Enter:out put_type -> EnterResp
3 , // 3: Scene.Action :output_type -> Action Resp
2 , // [2:4] is the sub-list for method output_type
0 , // [0:2] is the sub-list for method input_type
2 , // 1: Scene.Leave :input_type -> Leave Req
4 , // 2: Scene.Action:in put_type -> ActionReq
1 , // 3: Scene.Enter :output_type -> Enter Resp
3 , // 4: Scene.Leave:output_type -> LeaveResp
5 , // 5: Scene.Action:output_type -> ActionResp
3 , // [3:6] is the sub-list for method output_type
0 , // [0:3] is the sub-list for method input_type
0 , // [0:0] is the sub-list for extension type_name
0 , // [0:0] is the sub-list for extension extendee
0 , // [0:0] is the sub-list for field type_name
@@ -343,7 +505,7 @@ func file_service_scene_proto_init() {
}
}
file_service_scene_proto_msgTypes [ 2 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * Action Req) ; i {
switch v := v . ( * Leave Req) ; i {
case 0 :
return & v . state
case 1 :
@@ -355,6 +517,30 @@ func file_service_scene_proto_init() {
}
}
file_service_scene_proto_msgTypes [ 3 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * LeaveResp ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_service_scene_proto_msgTypes [ 4 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * ActionReq ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_service_scene_proto_msgTypes [ 5 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * ActionResp ) ; i {
case 0 :
return & v . state
@@ -373,7 +559,7 @@ func file_service_scene_proto_init() {
GoPackagePath : reflect . TypeOf ( x { } ) . PkgPath ( ) ,
RawDescriptor : file_service_scene_proto_rawDesc ,
NumEnums : 0 ,
NumMessages : 4 ,
NumMessages : 6 ,
NumExtensions : 0 ,
NumServices : 1 ,
} ,