mirror of
https://gitlab.com/YuukiPS/GSServer-CBT.git
synced 2024-12-26 07:49:29 +03:00
12 lines
164 B
Protocol Buffer
12 lines
164 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
import "CellInfo.proto";
|
||
|
|
||
|
message MapInfo {
|
||
|
int32 minx = 1;
|
||
|
int32 maxx = 2;
|
||
|
int32 minz = 3;
|
||
|
int32 maxz = 4;
|
||
|
repeated CellInfo cells = 5;
|
||
|
}
|