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