mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-27 00:49:25 +03:00
14 lines
248 B
Protocol Buffer
14 lines
248 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "Vector.proto";
|
|
|
|
//obf: ACPDAEBLCBA
|
|
message ShapeBox {
|
|
Vector center = 1;
|
|
Vector axis0 = 2;
|
|
Vector axis1 = 3;
|
|
Vector axis4 = 4;
|
|
Vector extents = 5;
|
|
}
|