GC-Proto/proto/ObstacleInfo.proto

24 lines
461 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "MathQuaternion.proto";
import "Vector.proto";
import "Vector3Int.proto";
// Name: LAGPLFLFOEF
message ObstacleInfo {
// Name: CFHDBJENNAP
enum ShapeType {
OBSTACLE_SHAPE_CAPSULE = 0;
OBSTACLE_SHAPE_BOX = 1;
}
int32 obstacle_id = 15;
MathQuaternion rotation = 1;
ShapeType shape = 12;
Vector3Int extents = 10;
Vector center = 3;
}