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-02-28 04:12:44 +03:00
// Name: KKLMEPGAGJK
2023-02-18 04:48:44 +03:00
message GMObstacleInfo {
2023-02-28 04:12:44 +03:00
ShapeType shape = 12;
Vector3Int extents = 5;
int32 obstacle_id = 8;
int64 timestamp = 7;
Vector center = 9;
MathQuaternion rotation = 13;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00