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.
12 lines
352 B
12 lines
352 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";
|
|
|
|
//Remove Marine Animal Command
|
|
message RMACM{
|
|
|
|
int32 LightBrightness=1; /*灯光亮度*/
|
|
int32 Robot_Speed=2; /*机器人速度*/
|
|
|
|
};
|
|
|