GC-Proto/proto/ObstacleInfo.proto

18 lines
329 B
Protocol Buffer

syntax = "proto3";
import "Rotation.proto";
import "Vector3Int.proto";
import "ShapeType.proto";
import "RotationSpeed.proto";
option java_package = "emu.grasscutter.net.proto";
message ObstacleInfo {
Rotation center = 4;
Vector3Int extents = 12;
ShapeType shape = 5;
int32 obstacleId = 9;
RotationSpeed rotation = 2;
}