增加区段

This commit is contained in:
Yuan 2023-06-09 18:35:19 +08:00
parent a8afc44290
commit 05d819fc86

View File

@ -14,6 +14,7 @@ message RtssGraphicStorage {
repeated Train train = 7; repeated Train train = 7;
repeated Signal signals = 8; repeated Signal signals = 8;
repeated Turnout turnouts = 9; repeated Turnout turnouts = 9;
repeated Section section = 10;
} }
message Canvas { message Canvas {
@ -85,8 +86,8 @@ message Rect {
message Platform { message Platform {
CommonInfo common = 1; CommonInfo common = 1;
string code = 2; string code = 2;
bool hasdoor = 3; // bool hasdoor = 3; //
string direction = 4; // -- string direction = 4; // --
} }
message Station { message Station {
@ -119,3 +120,9 @@ message Signal {
CommonInfo common = 1; CommonInfo common = 1;
string code = 2; string code = 2;
} }
message Section {
CommonInfo common = 1;
string code = 2;
repeated Point points = 3;
}