1 namespace TrainManager.Handles
2 {
3 	/// <summary>Defines the behaviour of the other handles (Power and brake) when the EB is activated</summary>
4 	public enum EbHandleBehaviour
5 	{
6 		/// <summary>No action is taken</summary>
7 		NoAction = 0,
8 		/// <summary>The power handle returns to the neutral position</summary>
9 		PowerNeutral = 1,
10 		/// <summary>The reverser handle returns to the neutral position</summary>
11 		ReverserNeutral = 2,
12 		/// <summary>Both the power handle and the reverser handle return to the neutral position</summary>
13 		PowerReverserNeutral = 3
14 	}
15 }
16