17 lines
272 B
Protocol Buffer
17 lines
272 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
package gazebo.msgs;
|
||
|
|
||
|
/// \ingroup gazebo_msgs
|
||
|
/// \interface Contacts
|
||
|
/// \brief Contacts from collision detection
|
||
|
|
||
|
|
||
|
import "contact.proto";
|
||
|
import "time.proto";
|
||
|
|
||
|
message Contacts
|
||
|
{
|
||
|
repeated Contact contact = 1;
|
||
|
required Time time = 2;
|
||
|
}
|