mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-22 01:11:42 +00:00
16 lines
240 B
Protocol Buffer
16 lines
240 B
Protocol Buffer
|
|
package gazebo.msgs;
|
||
|
|
|
||
|
|
/// \ingroup gazebo_msgs
|
||
|
|
/// \interface Float64
|
||
|
|
/// \brief A message for floating point data
|
||
|
|
/// \verbatim
|
||
|
|
|
||
|
|
option java_outer_classname = "GzFloat64";
|
||
|
|
|
||
|
|
message Float64
|
||
|
|
{
|
||
|
|
required double data = 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
/// \endverbatim
|