mirror of
https://gitlab.com/YuukiPS/GSServer-CBT.git
synced 2025-02-18 20:40:32 +03:00
13 lines
201 B
Protocol Buffer
13 lines
201 B
Protocol Buffer
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;
|
|
}
|