This commit is contained in:
Yuan 2023-06-08 09:39:06 +08:00
parent eb0340f7d2
commit 64916a4aec

View File

@ -10,6 +10,7 @@ message RtssGraphicStorage {
repeated Station stations = 5; repeated Station stations = 5;
repeated Rect Rects = 6; repeated Rect Rects = 6;
repeated Train train = 7; repeated Train train = 7;
repeated Turnout turnouts = 8;
} }
message Canvas { message Canvas {
@ -125,4 +126,11 @@ message IscsFan {
string code = 2; string code = 2;
} }
message Turnout {} message Turnout {
CommonInfo common = 1;
string code = 2;
Point forkPoint = 5; //
Point pointA = 6; // A端坐标
Point pointB = 7; // B端坐标
Point pointC = 8; // C端坐标
}