GSServer-CBT/soggy-mistress/proto/SceneEntityMoveRsp.proto
Akbar Yahya e0d4d8040c melon
2022-11-21 16:30:31 +08:00

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;
}