OpenBve.TrainManager.UpdateSafetySystem C# (CSharp) Method

UpdateSafetySystem() private static method

private static UpdateSafetySystem ( Train Train ) : void
Train Train
return void
		private static void UpdateSafetySystem(Train Train)
		{
			Game.UpdatePluginSections(Train);
			if (Train.Plugin != null)
			{
				Train.Plugin.LastSection = Train.CurrentSectionIndex;
				Train.Plugin.UpdatePlugin();
			}
		}