新增运行线

This commit is contained in:
fan 2023-06-12 17:31:45 +08:00
parent a8afc44290
commit e24df6ac79

View File

@ -14,6 +14,7 @@ message RtssGraphicStorage {
repeated Train train = 7;
repeated Signal signals = 8;
repeated Turnout turnouts = 9;
repeated RunLine runLines = 10;
}
message Canvas {
@ -119,3 +120,11 @@ message Signal {
CommonInfo common = 1;
string code = 2;
}
message RunLine {
CommonInfo common = 1;
string code = 2;
repeated Point points = 3;
string nameColor = 4;
string nameBgColor = 5;
}