GC-Proto/proto/GMObstacleInfo.proto
2023-02-28 09:12:44 +08:00

20 lines
392 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "MathQuaternion.proto";
import "ShapeType.proto";
import "Vector.proto";
import "Vector3Int.proto";
// Name: KKLMEPGAGJK
message GMObstacleInfo {
ShapeType shape = 12;
Vector3Int extents = 5;
int32 obstacle_id = 8;
int64 timestamp = 7;
Vector center = 9;
MathQuaternion rotation = 13;
}