Microscopic Traffic Simulator
SimulationSpeedChangeEventArgs.cs
Go to the documentation of this file.
1 using System;
2 
3 namespace Microscopic_Traffic_Simulator___Model.SimulationControl
4 {
8  public class SimulationSpeedChangeEventArgs : EventArgs
9  {
13  public double OldSimulationSpeed { get; set; }
14 
18  public double NewSimulationSpeed { get; set; }
19  }
20 }