You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
565 B
34 lines
565 B
syntax = "proto3"; |
|
package ET; |
|
|
|
|
|
message ObjectQueryResponse // IActorResponse |
|
{ |
|
int32 RpcId = 90; |
|
int32 Error = 91; |
|
string Message = 92; |
|
|
|
Entity entity = 1; |
|
} |
|
|
|
|
|
//ResponseType M2M_UnitTransferResponse |
|
message M2M_UnitTransferRequest // IActorRequest |
|
{ |
|
int32 RpcId = 1; |
|
Unit Unit = 2; |
|
repeated Entity Entitys = 3; |
|
int64 SceneInstanceId = 2; |
|
string SceneName = 3; |
|
|
|
} |
|
|
|
message UnitCache2Other_GetUnit // IActorResponse |
|
{ |
|
int32 RpcId = 90; |
|
int32 Error = 91; |
|
string Message = 92; |
|
|
|
repeated Entity EntityList = 1; |
|
repeated string ComponentNameList = 2; |
|
}
|
|
|