26 lines
500 B
Protocol Buffer
Executable File
26 lines
500 B
Protocol Buffer
Executable File
syntax = "proto3";
|
|
package ET;
|
|
message M2U_WriteComponent // IActorMessage
|
|
{
|
|
int32 RpcId = 90;
|
|
int64 ActorId = 93;
|
|
int64 Id = 1;
|
|
string type = 2;
|
|
Entity component =3;
|
|
}
|
|
//ResponseType U2M_GetComponent
|
|
message M2U_GetComponent // IActorRequest
|
|
{
|
|
int32 RpcId = 90;
|
|
int64 ActorId = 93;
|
|
int64 UserId = 1;
|
|
string type = 2;
|
|
}
|
|
message U2M_GetComponent // IActorResponse
|
|
{
|
|
int32 RpcId = 90;
|
|
int32 Error = 91;
|
|
string Message = 92;
|
|
Entity component = 1;
|
|
}
|