mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-04 16:16:06 +03:00
19 lines
349 B
Protocol Buffer
19 lines
349 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "MotionState.proto";
|
|
import "Vector.proto";
|
|
|
|
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;
|
|
}
|