16 lines
179 B
Protocol Buffer
16 lines
179 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
package gazebo.msgs;
|
||
|
|
||
|
/// \ingroup gazebo_msgs
|
||
|
/// \interface Int
|
||
|
/// \brief Integer message
|
||
|
|
||
|
|
||
|
message Int
|
||
|
{
|
||
|
/// Integer data
|
||
|
required int32 data = 1;
|
||
|
}
|
||
|
|
||
|
|