mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 17:00:24 +03:00
17 lines
263 B
Protocol Buffer
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;
|
|
}
|