Auto-format proto file

This commit is contained in:
Marc Di Luzio 2020-07-19 12:37:36 +01:00
parent da91d31649
commit e9188dbbf6

View file

@ -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