GC-Proto/proto/MotionInfo.proto

20 lines
358 B
Protocol Buffer

syntax = "proto3";
import "Rotation.proto";
import "MotionState.proto";
option java_package = "emu.grasscutter.net.proto";
message MotionInfo {
Rotation pos = 1;
Rotation rot = 2;
Rotation speed = 3;
MotionState state = 4;
repeated Rotation params = 5;
Rotation refPos = 6;
uint32 refId = 7;
uint32 sceneTime = 8;
uint64 intervalVelocity = 9;
}