16 lines
267 B
Protocol Buffer
16 lines
267 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
package gazebo.msgs;
|
||
|
|
||
|
/// \ingroup gazebo_msgs
|
||
|
/// \interface WirelessNodes
|
||
|
/// \brief Msgs for sending information about a list of wireless transmitters
|
||
|
|
||
|
|
||
|
import "wireless_node.proto";
|
||
|
|
||
|
message WirelessNodes
|
||
|
{
|
||
|
repeated WirelessNode node = 1;
|
||
|
}
|
||
|
|