17 lines
330 B
Protocol Buffer
17 lines
330 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
package gazebo.msgs;
|
||
|
|
||
|
/// \ingroup gazebo_msgs
|
||
|
/// \interface WorldReset
|
||
|
/// \brief A message that controls how the world is reset
|
||
|
|
||
|
|
||
|
message WorldReset
|
||
|
{
|
||
|
optional bool all = 1[default = true];
|
||
|
optional bool time_only = 2[default = false];
|
||
|
optional bool model_only = 3[default = false];
|
||
|
}
|
||
|
|
||
|
|