Skip to content

Commit bfdfae1

Browse files
committed
Classes moved to separate files and code cleanup
1 parent 5b753d0 commit bfdfae1

20 files changed

+9955
-10471
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// COPYRIGHT 2021 by the Open Rails project.
2+
//
3+
// This file is part of Open Rails.
4+
//
5+
// Open Rails is free software: you can redistribute it and/or modify
6+
// it under the terms of the GNU General Public License as published by
7+
// the Free Software Foundation, either version 3 of the License, or
8+
// (at your option) any later version.
9+
//
10+
// Open Rails is distributed in the hope that it will be useful,
11+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
// GNU General Public License for more details.
14+
//
15+
// You should have received a copy of the GNU General Public License
16+
// along with Open Rails. If not, see <http://www.gnu.org/licenses/>.
17+
18+
namespace Orts.Simulation.Signalling
19+
{
20+
public class CrossOverItem
21+
{
22+
public float[] Position = new float[2]; // position within track sections //
23+
public int[] SectionIndex = new int[2]; // indices of original sections //
24+
public int[] ItemIndex = new int[2]; // TDB item indices //
25+
public uint TrackShape;
26+
}
27+
}

0 commit comments

Comments
 (0)