rts-sim-testing-message/protos/ibpGraphics.proto

31 lines
492 B
Protocol Buffer
Raw Normal View History

2023-10-09 16:45:26 +08:00
syntax = "proto3";
import "stationLayoutGraphics.proto";
package ibpGraphicData;
message IBPGraphicStorage {
graphicData.Canvas canvas = 1;
repeated IBPButton ibpButtons = 2;
}
message IBPButton {
enum IbpButtonColor {
gray = 0;
red = 1;
green = 2;
blue = 3;
yellow = 4;
}
graphicData.CommonInfo common = 1;
string code = 2;
IbpButtonColor color = 3;
bool isSelfReset = 4;
}
message IBPText {
graphicData.CommonInfo common = 1;
int32 size = 2;
}