1 namespace TrainManager.BrakeSystems
2 {
3 	/// <summary>Defines the different types of brake system types</summary>
4 	public enum BrakeSystemType
5 	{
6 		/// <summary>The brake command is synchronized on all cars, however the brake pipe is used to distribute air</summary>
7 		ElectromagneticStraightAirBrake = 0,
8 		/// <summary>Each car is an independant brake unit, and the brake command is synchronized</summary>
9 		ElectricCommandBrake = 1,
10 		/// <summary>The brake pipe distributes air and regulates the appplication throughout the train</summary>
11 		AutomaticAirBrake = 2
12 	}
13 }
14