GSServer-CBT/soggy-mistress/proto/SceneEntityMoveRsp.proto

19 lines
318 B
Protocol Buffer
Raw Normal View History

2022-11-21 11:30:31 +03:00
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;
}