16 lines
297 B
Protocol Buffer
16 lines
297 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "MotionInfo.proto";
|
|
|
|
// CmdId: 227
|
|
// EnetChannelId: 1
|
|
// EnetIsReliable: true
|
|
message SceneEntityMoveNotify {
|
|
uint32 entity_id = 10;
|
|
MotionInfo motion_info = 3;
|
|
uint32 scene_time = 12;
|
|
uint32 reliable_seq = 11;
|
|
}
|