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

18 lines
301 B
Protocol Buffer

syntax = "proto3";
import "MotionInfo.proto";
message SceneEntityMoveNotify {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 212;
ENET_CHANNEL_ID = 1;
ENET_IS_RELIABLE = 0;
}
uint32 entityId = 1;
MotionInfo motionInfo = 2;
uint32 sceneTime = 3;
uint32 reliableSeq = 4;
}