mirror of
https://gitlab.com/YuukiPS/GSServer-CBT.git
synced 2024-12-25 15:29:22 +03:00
19 lines
318 B
Protocol Buffer
19 lines
318 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "MotionInfo.proto";
|
|
|
|
message SceneEntityMoveRsp {
|
|
enum CmdId {
|
|
option allow_alias = true;
|
|
NONE = 0;
|
|
CMD_ID = 209;
|
|
ENET_CHANNEL_ID = 1;
|
|
ENET_IS_RELIABLE = 0;
|
|
}
|
|
int32 retcode = 1;
|
|
uint32 entityId = 2;
|
|
MotionInfo failMotion = 3;
|
|
uint32 sceneTime = 4;
|
|
uint32 reliableSeq = 5;
|
|
}
|