1
This commit is contained in:
parent
ef7df2b543
commit
08fac6fffb
19
server/tools/protobuild/navmesh.proto
Normal file
19
server/tools/protobuild/navmesh.proto
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
syntax = "proto2";
|
||||||
|
package navmesh;
|
||||||
|
|
||||||
|
message HeightList{
|
||||||
|
required int32 width = 1;
|
||||||
|
required int32 height = 2;
|
||||||
|
repeated HeightData datas = 3;
|
||||||
|
}
|
||||||
|
message HeightData{
|
||||||
|
required int32 x = 1;
|
||||||
|
required int32 y = 2;
|
||||||
|
optional int32 endx = 3;
|
||||||
|
repeated HeightInfo infos = 4;
|
||||||
|
}
|
||||||
|
|
||||||
|
message HeightInfo{
|
||||||
|
optional int32 t = 1;
|
||||||
|
required int32 h = 2;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user