13 lines
185 B
Protocol Buffer
13 lines
185 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
|
||
|
|
||
|
import "VectorPlane.proto";
|
||
|
|
||
|
message PolygonSize {
|
||
|
float height = 13;
|
||
|
repeated VectorPlane pointList = 15;
|
||
|
}
|