GC-Proto/proto/BoxInfo.proto

17 lines
263 B
Protocol Buffer

syntax = "proto3";
import "Rotation.proto";
option java_package = "emu.grasscutter.net.proto";
message BoxInfo {
int32 id = 1;
uint32 configId = 2;
Rotation center = 3;
Rotation extents = 4;
Rotation up = 5;
Rotation forward = 6;
Rotation right = 7;
}