mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-23 01:21:42 +00:00
16 lines
222 B
Protocol Buffer
16 lines
222 B
Protocol Buffer
|
|
package gazebo.msgs;
|
||
|
|
|
||
|
|
/// \ingroup gazebo_msgs
|
||
|
|
/// \interface Bool
|
||
|
|
/// \brief A message for boolean data
|
||
|
|
/// \verbatim
|
||
|
|
|
||
|
|
option java_outer_classname = "GzBool";
|
||
|
|
|
||
|
|
message Bool
|
||
|
|
{
|
||
|
|
required bool data = 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
/// \endverbatim
|