mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 07:59:24 +03:00
24 lines
416 B
Protocol Buffer
24 lines
416 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
|
|
import "Vector.proto";
|
|
import "MathQuaternion.proto";
|
|
import "ShapeType.proto";
|
|
|
|
message ToTheMoonObstacleInfo {
|
|
|
|
enum ShapeType {
|
|
SHAPE_TYPE_OBSTACLE_SHAPE_CAPSULE = 0;
|
|
SHAPE_TYPE_OBSTACLE_SHAPE_BOX = 1;
|
|
}
|
|
|
|
Vector center = 3;
|
|
int32 handleId = 5;
|
|
MathQuaternion rotation = 8;
|
|
Vector halfExtents = 9;
|
|
ShapeType type = 1;
|
|
}
|