GSServer-CBT/soggy-mistress/proto/MotionInfo.proto

13 lines
201 B
Protocol Buffer
Raw Permalink Normal View History

2022-11-21 11:30:31 +03:00
syntax = "proto3";
import "Vector.proto";
import "MotionState.proto";
message MotionInfo {
Vector pos = 1;
Vector rot = 2;
Vector speed = 3;
MotionState state = 4;
repeated Vector params = 5;
}