This commit is contained in:
Yuan 2023-06-08 09:39:43 +08:00
commit e7a80d731e

View File

@ -10,7 +10,11 @@ message RtssGraphicStorage {
repeated Station stations = 5;
repeated Rect Rects = 6;
repeated Train train = 7;
<<<<<<< HEAD
repeated Turnout turnouts = 8;
=======
repeated Signal signals = 8;
>>>>>>> 86de0cff9ee560f0c7e670184d5baccfdb28ee44
}
message Canvas {
@ -134,3 +138,12 @@ message Turnout {
Point pointB = 7; // B端坐标
Point pointC = 8; // C端坐标
}
message Signal {
CommonInfo common = 1;
string code = 2;
string codeColor = 3; //
int32 codeFontSize = 4; //
Point point = 5; //
string direction = 6; //
}