2022-11-06 15:30:21 +03:00
|
|
|
syntax = "proto3";
|
2023-01-28 18:50:00 +03:00
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
2023-05-23 09:48:59 +03:00
|
|
|
import "MotionInfo.proto";
|
2024-08-21 00:45:19 +03:00
|
|
|
// 4.7.0 ?
|
|
|
|
// Obf: ?
|
2022-11-06 15:30:21 +03:00
|
|
|
message EntityMoveInfo {
|
2023-05-23 09:48:59 +03:00
|
|
|
uint32 entity_id = 1;
|
|
|
|
MotionInfo motion_info = 2;
|
|
|
|
uint32 scene_time = 3;
|
|
|
|
uint32 reliable_seq = 4;
|
|
|
|
bool is_reliable = 5;
|
2022-11-06 15:30:21 +03:00
|
|
|
}
|