mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-21 10:32:41 +00:00
13 lines
198 B
Protocol Buffer
13 lines
198 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message TerrainMap {
|
|
int32 height = 1;
|
|
int32 width = 2;
|
|
repeated TerrainTile terrain = 3;
|
|
}
|
|
|
|
message TerrainTile {
|
|
string name = 1;
|
|
int32 age = 2;
|
|
string email = 3;
|
|
} |