GC-Proto/proto/ObstacleInfo.proto

24 lines
460 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "MathQuaternion.proto";
import "Vector.proto";
import "Vector3Int.proto";
// Name: CDDKKKCFJAI
message ObstacleInfo {
// Name: KOGMBFEKPBM
enum ShapeType {
OBSTACLE_SHAPE_CAPSULE = 0;
OBSTACLE_SHAPE_BOX = 1;
}
ShapeType shape = 1;
MathQuaternion rotation = 13;
Vector3Int extents = 11;
int32 obstacle_id = 2;
Vector center = 9;
}