Auto-format proto file
This commit is contained in:
parent
da91d31649
commit
e9188dbbf6
1 changed files with 16 additions and 16 deletions
|
@ -136,31 +136,31 @@ message CommandResponse {}
|
||||||
|
|
||||||
// Types of objects
|
// Types of objects
|
||||||
enum Object {
|
enum Object {
|
||||||
// ObjectUnknown represents no object at all
|
// ObjectUnknown represents no object at all
|
||||||
ObjectUnknown = 0;
|
ObjectUnknown = 0;
|
||||||
|
|
||||||
// RoverLive represents a live rover
|
// RoverLive represents a live rover
|
||||||
RoverLive = 1;
|
RoverLive = 1;
|
||||||
|
|
||||||
// RockSmall is a small stashable rock
|
// RockSmall is a small stashable rock
|
||||||
RockSmall = 2;
|
RockSmall = 2;
|
||||||
|
|
||||||
// RockLarge is a large blocking rock
|
// RockLarge is a large blocking rock
|
||||||
RockLarge = 3;
|
RockLarge = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
enum Tile {
|
enum Tile {
|
||||||
// TileUnknown is a keyword for nothing
|
// TileUnknown is a keyword for nothing
|
||||||
TileUnknown = 0;
|
TileUnknown = 0;
|
||||||
|
|
||||||
// Rock is solid rock ground
|
// Rock is solid rock ground
|
||||||
Rock = 1;
|
Rock = 1;
|
||||||
|
|
||||||
// Gravel is loose rocks
|
// Gravel is loose rocks
|
||||||
Gravel = 2;
|
Gravel = 2;
|
||||||
|
|
||||||
// Sand is sand
|
// Sand is sand
|
||||||
Sand = 3;
|
Sand = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
// RadarRequest is the data needed to request the radar for a rover
|
// RadarRequest is the data needed to request the radar for a rover
|
||||||
|
|
Loading…
Add table
Reference in a new issue