Skip to content

Commit c2a5d32

Browse files
committed
Fix conflict
1 parent ee539e3 commit c2a5d32

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

Source/Orts.Simulation/Simulation/RollingStocks/MSTSLocomotive.cs

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,16 @@ public float CurrentLocomotiveSteamHeatBoilerWaterCapacityL
239239
//float DebugSpeed = 5.0f; // Initialise at 5 mph
240240
//float DebugTimer = 0.0f;
241241

242+
public enum SteamLocomotiveFuelTypes
243+
{
244+
Unknown,
245+
Oil,
246+
Wood, // not used at the moment
247+
Coal, // defaults to coal
248+
}
249+
250+
public SteamLocomotiveFuelTypes SteamLocomotiveFuelType;
251+
242252
// Adhesion parameters
243253
public enum SlipControlType
244254
{
@@ -478,15 +488,6 @@ public float OdometerM
478488
public float ThrottleIntervention = -1;
479489
public float DynamicBrakeIntervention = -1;
480490

481-
public enum SteamLocomotiveFuelTypes
482-
{
483-
Unknown,
484-
Oil,
485-
Wood, // not used at the moment
486-
Coal, // defaults to coal
487-
}
488-
489-
public SteamLocomotiveFuelTypes SteamLocomotiveFuelType;
490491
public enum TractionMotorTypes
491492
{
492493
DC,

0 commit comments

Comments
 (0)