mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-13 01:09:26 +03:00
18 lines
301 B
Protocol Buffer
18 lines
301 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "Vector.proto";
|
|
|
|
// Name: PGPIMHLBMNI
|
|
message MassiveBoxInfo {
|
|
int32 id = 1;
|
|
uint32 config_id = 2;
|
|
Vector center = 3;
|
|
Vector extents = 4;
|
|
Vector up = 5;
|
|
Vector forward = 6;
|
|
Vector right = 7;
|
|
}
|
|
|