mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-02-17 22:42:26 +08:00
格式化代码
This commit is contained in:
@@ -5,25 +5,25 @@ package proto;
|
||||
option go_package = "./;proto";
|
||||
|
||||
enum SceneSurfaceMaterial {
|
||||
Invalid = 0;
|
||||
Grass = 1;
|
||||
Dirt = 2;
|
||||
Rock = 3;
|
||||
Snow = 4;
|
||||
Water = 5;
|
||||
Tile = 6;
|
||||
Sand = 7;
|
||||
Invalid = 0;
|
||||
Grass = 1;
|
||||
Dirt = 2;
|
||||
Rock = 3;
|
||||
Snow = 4;
|
||||
Water = 5;
|
||||
Tile = 6;
|
||||
Sand = 7;
|
||||
}
|
||||
|
||||
message MapInfo {
|
||||
int32 minx = 1;
|
||||
int32 maxx = 2;
|
||||
int32 minz = 3;
|
||||
int32 maxz = 4;
|
||||
repeated CellInfo cells = 5;
|
||||
int32 minx = 1;
|
||||
int32 maxx = 2;
|
||||
int32 minz = 3;
|
||||
int32 maxz = 4;
|
||||
repeated CellInfo cells = 5;
|
||||
}
|
||||
|
||||
message CellInfo {
|
||||
SceneSurfaceMaterial type = 1;
|
||||
int32 y = 2;
|
||||
SceneSurfaceMaterial type = 1;
|
||||
int32 y = 2;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user