添加信号机

This commit is contained in:
fan 2023-06-06 16:46:33 +08:00
parent eb0340f7d2
commit 86de0cff9e

View File

@ -10,6 +10,7 @@ message RtssGraphicStorage {
repeated Station stations = 5;
repeated Rect Rects = 6;
repeated Train train = 7;
repeated Signal signals = 8;
}
message Canvas {
@ -126,3 +127,12 @@ message IscsFan {
}
message Turnout {}
message Signal {
CommonInfo common = 1;
string code = 2;
string codeColor = 3; //
int32 codeFontSize = 4; //
Point point = 5; //
string direction = 6; //
}