GSServer-CBT/soggy-mistress/proto/MotionInfo.proto
Akbar Yahya e0d4d8040c melon
2022-11-21 16:30:31 +08:00

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;
}