GC-Proto/proto/ShapeBox.proto

15 lines
228 B
Protocol Buffer
Raw Normal View History

2023-01-28 17:00:48 +03:00
syntax = "proto3";
import "Rotation.proto";
option java_package = "emu.grasscutter.net.proto";
message ShapeBox {
Rotation center = 1;
Rotation axis0 = 2;
Rotation axis1 = 3;
Rotation axis2 = 4;
Rotation extents = 5;
}