17 lines
366 B
Protocol Buffer
17 lines
366 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
import "Vector.proto";
|
|
import "MotionState.proto";
|
|
// Obf: LJEPKMPIOKJ
|
|
message MotionInfo {
|
|
Vector pos = 1;
|
|
Vector rot = 2;
|
|
Vector speed = 3;
|
|
MotionState state = 4;
|
|
repeated Vector params = 5;
|
|
Vector ref_pos = 6;
|
|
uint32 ref_id = 7;
|
|
uint32 scene_time = 8;
|
|
uint64 interval_velocity = 9;
|
|
}
|