You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
390 B
13 lines
390 B
syntax = "proto3";
|
|
|
|
option java_multiple_files = false;//set true, and all the messages will be stored in different files, which is not what I want
|
|
option java_package = "com.example.removemarineanimals.models";
|
|
|
|
|
|
message DataTrans{
|
|
|
|
int32 RF_Angle_Roll=1; /*横滚角*/
|
|
int32 RF_Angle_Pitch=2; /*俯仰角*/
|
|
int32 RF_Angle_Yaw=3; /*航向角*/
|
|
int32 RF_Depth=4; /*海洋深度*/
|
|
};
|
|
|