2023-02-18 04:48:44 +03:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
|
|
import "MathQuaternion.proto";
|
2023-02-28 04:12:44 +03:00
|
|
|
import "Vector.proto";
|
2023-02-18 04:48:44 +03:00
|
|
|
|
2023-02-28 04:12:44 +03:00
|
|
|
// Name: ECDLKNIAMAF
|
2023-02-18 04:48:44 +03:00
|
|
|
message ToTheMoonObstacleInfo {
|
2023-02-28 04:12:44 +03:00
|
|
|
// Name: PIFLNEEKLJG
|
|
|
|
enum ShapeType {
|
|
|
|
OBSTACLE_SHAPE_CAPSULE = 0;
|
|
|
|
OBSTACLE_SHAPE_BOX = 1;
|
2023-02-18 04:48:44 +03:00
|
|
|
}
|
|
|
|
|
2023-02-28 04:12:44 +03:00
|
|
|
ShapeType type = 11;
|
|
|
|
Vector half_extents = 6;
|
|
|
|
Vector center = 7;
|
|
|
|
int32 handle_id = 5;
|
|
|
|
MathQuaternion rotation = 12;
|
2023-02-18 04:48:44 +03:00
|
|
|
}
|
2023-02-28 04:12:44 +03:00
|
|
|
|