mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-04 16:16:06 +03:00
23 lines
440 B
Protocol Buffer
23 lines
440 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "MathQuaternion.proto";
|
|
import "Vector.proto";
|
|
|
|
// Name: BEOFHEJKBNP
|
|
message ToTheMoonObstacleInfo {
|
|
// Name: MNENMABCJHH
|
|
enum ShapeType {
|
|
OBSTACLE_SHAPE_CAPSULE = 0;
|
|
OBSTACLE_SHAPE_BOX = 1;
|
|
}
|
|
|
|
int32 handle_id = 8;
|
|
Vector center = 4;
|
|
Vector half_extents = 10;
|
|
MathQuaternion rotation = 14;
|
|
ShapeType type = 2;
|
|
}
|
|
|