mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-13 01:09:26 +03:00
20 lines
392 B
Protocol Buffer
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;
|
|
}
|
|
|