mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +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: NGCBMFFPPBK
|
|
message GMObstacleInfo {
|
|
ShapeType shape = 2;
|
|
int64 timestamp = 8;
|
|
MathQuaternion rotation = 11;
|
|
Vector center = 1;
|
|
int32 obstacle_id = 6;
|
|
Vector3Int extents = 13;
|
|
}
|
|
|