16 lines
195 B
Protocol Buffer
16 lines
195 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
package gazebo.msgs;
|
||
|
|
||
|
/// \ingroup gazebo_msgs
|
||
|
/// \interface Time
|
||
|
/// \brief A message for time data
|
||
|
|
||
|
|
||
|
message Time
|
||
|
{
|
||
|
required int32 sec = 1;
|
||
|
required int32 nsec = 2;
|
||
|
}
|
||
|
|
||
|
|