mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +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: ECDLKNIAMAF
|
|
message ToTheMoonObstacleInfo {
|
|
// Name: PIFLNEEKLJG
|
|
enum ShapeType {
|
|
OBSTACLE_SHAPE_CAPSULE = 0;
|
|
OBSTACLE_SHAPE_BOX = 1;
|
|
}
|
|
|
|
ShapeType type = 11;
|
|
Vector half_extents = 6;
|
|
Vector center = 7;
|
|
int32 handle_id = 5;
|
|
MathQuaternion rotation = 12;
|
|
}
|
|
|