19 lines
321 B
Protocol Buffer
19 lines
321 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "MotionInfo.proto";
|
|
|
|
message SceneEntityMoveReq {
|
|
enum CmdId {
|
|
option allow_alias = true;
|
|
NONE = 0;
|
|
CMD_ID = 208;
|
|
ENET_CHANNEL_ID = 1;
|
|
ENET_IS_RELIABLE = 0;
|
|
IS_ALLOW_CLIENT = 1;
|
|
}
|
|
uint32 entityId = 1;
|
|
MotionInfo motionInfo = 2;
|
|
uint32 sceneTime = 3;
|
|
uint32 reliableSeq = 4;
|
|
}
|