GC-Proto/proto/GMObstacleInfo.proto

20 lines
392 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-02-28 04:12:44 +03:00
import "MathQuaternion.proto";
2023-02-18 04:48:44 +03:00
import "ShapeType.proto";
import "Vector.proto";
import "Vector3Int.proto";
2023-04-11 06:14:48 +03:00
// Name: NGCBMFFPPBK
2023-02-18 04:48:44 +03:00
message GMObstacleInfo {
2023-04-11 06:14:48 +03:00
ShapeType shape = 2;
int64 timestamp = 8;
MathQuaternion rotation = 11;
Vector center = 1;
int32 obstacle_id = 6;
Vector3Int extents = 13;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00