1 // ReSharper disable UnusedMember.Global
2 namespace TrainManager.Car
3 {
4 	/// <summary>The available modes for doors within a train</summary>
5 	public enum DoorMode
6 	{
7 		/// <summary>The doors function automatically, but the player may override them</summary>
8 		AutomaticManualOverride = 0,
9 		/// <summary>The doors function automatically, but the player may override them</summary>
10 		SemiAutomatic = 0,
11 		/// <summary>The doors function wholely automatically</summary>
12 		Automatic = 1,
13 		/// <summary>The doors must be manually activated by the player</summary>
14 		Manual = 2
15 	}
16 }
17